Dominic Clay - 2006-07-03

Hi all,

This is a great package.  I am looking at it to learn C++.  I managed to get it all to compile from the visual studio project file that is included in the CVS package.  I decided to copy the tinyXmlTest concept and create my own project.

I started with just the basics from the VS2005 default win32 console application saved in the same folder as tinyxml.
That compiled...

I then added a header of: #include "tinyxml.h"
That compiled...

Then I added:
    TiXmlDocument doc( "demo.xml" );
    doc.LoadFile();

    return 0;

into the main method.

Then I get errors in the linking...
tinyxmld.lib(tinystr.obj) : warning LNK4204: 'd:\utils\dev\tinyxml\debug\vc80.pdb' is missing debugging information for referencing module; linking object as if no debug info
tinyxmld.lib(tinyxml.obj) : warning LNK4204: 'd:\utils\dev\tinyxml\debug\vc80.pdb' is missing debugging information for referencing module; linking object as if no debug info
tinyxmld.lib(tinyxmlerror.obj) : warning LNK4204: 'd:\utils\dev\tinyxml\debug\vc80.pdb' is missing debugging information for referencing module; linking object as if no debug info
tinyxmld.lib(tinyxmlparser.obj) : warning LNK4204: 'd:\utils\dev\tinyxml\debug\vc80.pdb' is missing debugging information for referencing module; linking object as if no debug info

I have tried rebuilding the project in different orders to no effect.  It seems to compile, but I cant debug the project...

Does anyone have any thoughts???

Cheers,

Zeich