-create a new project (I did static Lib for debugging purposes)
- add all cpp files from src
- add in include path .\w32 and then .\include
- modify .\w32\cc++\config.h
I had to do:
* add #include <stdio.h> after #define CCXX_CONFIG_H_
* #undef HAVE_OLD_IOSTREAM
* #undef HAVE_LIBXML (depends on your needs)
HTH.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
What would I need to do to compile the library with mingw (using Dev-C++) for win32?
Thanks for any help,
-Chris-
There are two ways,
1: using msys; ./configure make
2: using DevCpp:
-create a new project (I did static Lib for debugging purposes)
- add all cpp files from src
- add in include path .\w32 and then .\include
- modify .\w32\cc++\config.h
I had to do:
* add #include <stdio.h> after #define CCXX_CONFIG_H_
* #undef HAVE_OLD_IOSTREAM
* #undef HAVE_LIBXML (depends on your needs)
HTH.