posts - 225, comments - 62, trackbacks - 0, articles - 0
   :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
原文: http://www.cnblogs.com/nicebear/archive/2011/04/24/2026036.html

wx-config returns information about the wxWidgets libraries available on your system.
wx-config有许多参数,其中必须要用的两个参数是--libs和--cxxflags。


在我的机器上:

$wx-config --libs
输出结果: -framework IOKit -framework Carbon -framework Cocoa -framework System -framework QuickTime -framework OpenGL -framework AGL -lwx_macud-2.8

$wx-config --cxxflags
输出结果: -I/usr/lib/wx/include/mac-unicode-debug-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXDEBUG__ -D__WXMAC__

编译时使用如下命令即可:

g++ -m32 helloworld.cpp `wx-config --libs --cxxflags` -o helloworld

另外,Window版本的wx-config不是被默认安装的,这个程序不太好找,这里提供了一个。点此下载

只有注册用户登录后才能发表评论。