i like to create an win32 project using the gtk+ libs. the libs are allready installed, and i can compile c/c++ source with gtk+ by using a batch file.
but now i like to edit my source with the dev-c++ ide. how i have to change the compiler-properties in the dev-c++ that it uses the gtk+ libs?
the path is:
D:\GNU-DEV\gtk\src\gtk+
D:\GNU-DEV\gtk\src\glib
thank you for your help
sincerly
o. kroll
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi,
i like to create an win32 project using the gtk+ libs. the libs are allready installed, and i can compile c/c++ source with gtk+ by using a batch file.
but now i like to edit my source with the dev-c++ ide. how i have to change the compiler-properties in the dev-c++ that it uses the gtk+ libs?
the path is:
D:\GNU-DEV\gtk\src\gtk+
D:\GNU-DEV\gtk\src\glib
thank you for your help
sincerly
o. kroll
Move all .a or .lib files to Dev's 'lib' directory, the gtk include files to the include directory.
Other way is to tell the compiler:
-LD:\GNU-DEV\gtk\src\gtk+
-LD:\GNU-DEV\gtk\src\glib
This will make it to look for libraries on those directories.