Question

i want to use gtksourceview in my c++ project. I dig around the IDE of code::blocks and really find it helpfull. i specify gtkmm directory in linker and include options but as i look for gtksourceview i found a libgtksourceview-2.0-0.dll file i really don't know how to add this in code::blocks and use gtksourceview. I am have programming experience in C for microcontrollers just and now i have not really idea about the compilation process of gcc and g++. and can i able to add the file directives as

    #include <gtksourceview/gtksourceview.h> 

please help sorry if it seems so basic question for someone but i really stuck of to compile the code and then asking. I am using windows by the way. Thanks in advance

No correct solution

OTHER TIPS

There are two different things: the runtime libraries and the development headers. The former allows you to run the applications (also to link them), the later to compile them. Either you are missing the header files (gtksourceview.h in your example) or setting the PATH in your IDE to find the header files.

Check the manual for 'Including libraries'.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top