So I\'m trying to use GTK+ 3.0 in Visual Studio 2013, and I followed this tutorial:How to configure gtk on Visual studio 2010. The problem is that whenever I try to build the s
I followed the same steps and it worked for me. The includes and libs I use don't seem to contain any additional files.
In your build the Path to the GTK dlls seems to be unclear. Maybe you forgot to add the GTK dll dir (GTK\bin) to your system path?
You also have to assure that your build configuration matches the dlls, so win32 for dlls built as 32bit and x64 for dlls built as 64bit.
So for anyone who's interested; I figured it out! It's kind of a sloppy way to deal with things, but all I had to do was copy the .dll files into the Debug folder of the VS2013 project. Everything else works as expected!