Im trying to use expat-1.95.5 on my project (http://expat.sourceforge.net/).
Lame question: If i include libexpat.lib on my linker options for my project, that means that my app will NOT require libexpat.dll right?
So all i need to do is #include Expat.h and the libexpat.lib on my linker options and its done?
No one? So maybe someone knows some other C xml parsers?
Yeah, I think you need to put libexpat.lib in your dev\lib folder, and add it to your project options for your linker like so: -lexpat
Then include the header: #include "expat.h" and you don't need the expat.dll
-GLENN-
Log in to post a comment.
Im trying to use expat-1.95.5 on my project (http://expat.sourceforge.net/).
Lame question:
If i include libexpat.lib on my linker options for my project, that means that my app will NOT require libexpat.dll right?
So all i need to do is #include Expat.h and the libexpat.lib on my linker options and its done?
No one? So maybe someone knows some other C xml parsers?
Yeah, I think you need to put libexpat.lib in your dev\lib folder, and add it to your project options for your linker like so: -lexpat
Then include the header: #include "expat.h" and you don't need the expat.dll
-GLENN-