如何在 Windows 上使用 Eclipse 构建 wxWidgets

发布于 2024-07-06 08:00:16 字数 261 浏览 8 评论 0 原文

我在 Windows XP SP2 机器上安装了 wxWidgets 2.8.9 并根据说明构建了库,现在我正在尝试获取 世界你好! 教程 应用程序从 Eclipse 中构建,但我显然错过了一些东西。 知道如何让 Cygwin、Eclipse 和 wxWidgets 很好地协同工作吗?

I installed wxWidgets 2.8.9 on a Windows XP SP2 box and built the library according to the directions and now I'm trying to get the Hello World! tutorial app to build from within Eclipse and I'm just missing something apparently. Any idea how to get Cygwin, Eclipse and wxWidgets to play nice together?

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

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

发布评论

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

评论(2

末骤雨初歇 2024-07-13 08:00:16

答案由 Lars Uffmann 发布到 comp.soft-sys.wxwindows 新闻组。 简而言之:

  1. 将 c:/cygwin/usr/local/bin 添加到 Eclipse 项目配置中的路径

  2. < p>将“wx-config --cxxflags”添加到 GCC C++ 编译器命令

  3. 移动 ${FLAGS} 变量到
    GCC C++ 链接器命令结束
    线条图案

  4. 将“wx-config --libs”添加到 GCC
    C++ 链接器标志。

感谢乌夫曼先生分享这些信息; 这个问题已经让我头疼好几天了。


编辑:请注意,wx-config 字符串的每一端都有一个反引号。 转义反引号的方法似乎无法正常工作。 有关确切语法的更多详细信息,请参阅链接的答案。

This answer was posted by Lars Uffmann to the comp.soft-sys.wxwindows newsgroup. In a nutshell:

  1. Add c:/cygwin/usr/local/bin to the path in the Eclipse project configuration

  2. Add ``wx-config --cxxflags`‘ to the GCC C++ Compiler command

  3. Move the ${FLAGS} variable to the
    end of the GCC C++ Linker Command
    Line Pattern

  4. Add ``wx-config --libs`‘ to the GCC
    C++ Linker flags.

Thank goodness for Mr. Uffmann sharing this information; this problem has been giving me headaches for days.


EDIT: Note that there is a literal backtick at each end of the wx-config strings. The method of escaping the backtick doesn't seem to work correctly. Refer to the linked answer for more details on exact syntax.

2024-07-13 08:00:16

我自己在 Windows 上使用 MinGW 构建了 wxWidgets,并让 CMake 2.6 在 Windows 上为 Eclipse 创建 Makefile 和项目文件。 这对我来说效果很好。

I built wxWidgets with MinGW on Windows myself and let CMake 2.6 create the Makefiles and project files for Eclipse on Windows. This works pretty well for me.

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