如何在 Mac 中使用 wxWidgets
我是 wxWidget 的新手,想了解这个库。我尝试使用“make”命令安装并尝试制作一个程序(使用 g++ 的东西)但没有成功。我尝试使用 http://max.berger.name/howto/wxWidgets /wxWidgets_Eclipse.jsp#d43e34 但也没有成功。
那么实际上如何使用wxWidgets并编译程序呢?我必须编写自己的 Makefile 吗?我必须将源代码放入 wxWidgets 安装中吗?
感谢您的提前
I am completely newbie in wxWidget and want to learn about this library. I've try to install with "make" command and try to make a program (using the g++ stuff) and no success. I've try to use http://max.berger.name/howto/wxWidgets/wxWidgets_Eclipse.jsp#d43e34 but no succes either.
So actually how to use wxWidgets and compile a program? Am I have to write my own Makefile? Am I have to put the source code in the wxWidgets installation?
Thanks for advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Mac 上有两种方法:
使用 ./configure &&制作&& make install
在你的 wxWidgets 下载文件夹中,或者使用 Xcode 构建 wxWidgets。这两种方法都记录在 wxWidgets wiki 上:On the Mac there's two ways:
use ./configure && make && make install
in your wxWidgets download folder, or use Xcode to build wxWidgets. Both these ways are documented on the wxWidgets wiki:你检查过这个吗 - http://www.wxwidgets.org/docs/faqmac.htm#构建x?
我没有在Mac上使用过的个人经验。我只在Windows上使用过它。
Did you check this - http://www.wxwidgets.org/docs/faqmac.htm#buildx ?
Have no personal experience on mac.. I've only used it on Windows.