gtkmm 包括不工作的 Windows 7

发布于 2024-10-27 16:44:42 字数 155 浏览 1 评论 0原文

我安装了 gtkmm gui 库(用于 c++),但我无法让它工作。 c:\gtkmm64\bin 在路径上,但我的 ide 说只有 c:\mingw\include\something 下的包含文件在那里。我使用netbeans作为我的IDE,我运行Windows 7,我的编译器是mingw。

i installed the gtkmm gui libraries(for c++), but i can't get it to work. c:\gtkmm64\bin is on Path, but my ide says only the include files under c:\mingw\include\something are there. i use netbeans as my ide, i run windows 7, my compiler is mingw.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-11-03 16:44:42

配置 Gtkmm 使其工作在某种程度上可能是一场噩梦。

您需要对项目属性执行以下操作:

  • 在“C++ 编译器”部分,您必须将所有包含内容放入“包含目录”部分。请注意,那里有很多 .h 文件,不仅需要 gtkmm/include 。例如,还需要 glib/include 等。

  • 在“链接器”部分,单击“库”。您必须将 gtkmm 包中的所有库放入其中。与上一节一样,不仅需要 gtkmm/lib:还需要 glib/lib、pango/lib 等。

当编译器停止抱怨时,你就完成了。

Configuring Gtkmm to work can somewhat be a nightmare.

You need to do the following on project properties:

  • On "C++ compiler" section, you'll have to put all includes in the "Include Directories" section. Be aware that there are a lot of .h files sown there, not only gtkmm/include is needed. For example, glib/include will also be needed, etc.

  • On the "Linker" section, click in Libraries. You have to put there all libraries in the gtkmm package. As in the previous seciton, not only gtkmm/lib is needed: glib/lib, pango/lib, etc. will also be needed.

You're done when the compiler stops complaining.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文