Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, I download the gdk and dtk library from the link:http://www.gtk.org/download/win32.php[^] and trying to include gdk and gtk header to my C++/cli program in visual studio:

XML
#include <glib.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>


but I get the
VB
Error   2   error C1083: Cannot open include file: 'glibconfig.h': No such file or directory    Lib\glib-dev_2.34.3-1_win32\include\glib-2.0\glib\gtypes.h 

How to fix it?
Posted
Updated 8-Nov-14 21:12pm
v2

1 solution

This is a Fatal Error C1083[^]. Read that MSDN documentation to learn more about it.

But the best remedy is to check for the fileName that you're including because this error generates when the compiler is not able to find a name by that name. Make sure that Lib\glib-dev_2.34.3-1_win32\include\glib-2.0\glib\gtypes.h file exists. This might also get thrown when the fileName doesn't match.

If this is the first time you're running the application or project make sure you've downloaded all of the files required. Or contact the developer of the project.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900