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:
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+.