How to write GTK applications in Visual Studio c++

2019-09-15 14:24发布

I made c++ project for Linux platform in Visual Studio and connected to linux virtual machine with g++, gdb, gdbserver and libgtk-3-dev. But I can't compile program with gtk.h lib. What do I need to do for Visual Studio to detect gtk?

1条回答
乱世女痞
2楼-- · 2019-09-15 14:52

Visual C++ for Linux builds your application on the target Linux system. Therefore the GTK+ headers and libraries need only be present on the Linux target. However, if you want IntelliSense to work (and who wouldn't) the GTK+ headers need to be visible to Visual Studio on the Windows host. The easiest way to do this is to copy the headers onto the Windows host (put them in their own folder). The include path in Visual Studio's project settings must specify the Linux path for the GTK+ headers for g++ on the Linux target and the Windows path on the Windows host.

This question might give you some more information.

And, as you are using c++, you might like gtkmm which provides c++ bindings for GTK+.

查看更多
登录 后发表回答