Build wxWidgets applications in Ubuntu

本文详细介绍了在Ubuntu环境下安装并使用wxWidgets库的步骤,包括解决安装过程中遇到的问题,并提供了构建wxWidgets应用的具体指南。通过教程,读者可以顺利在Ubuntu上安装和使用wxWidgets,简化开发流程。

今天准备把原来的项目迁移到ubuntu下,之前用到的wxWidgets库一直装不上,后来查了相关资料才解决了问题,这里分享一下安装的

版本号记得替换一下,比如  安装wxWidgets3.0.2  需要 libxgtk3.0-dev 等

在教程中有个地方挺坑的

$(shell wx-config --cxxflags)  这个是一个EL表达式,表示取shell中运行 wx-config --cxxflags 的结果值

wx-config 是在wxWidgets的根目录下


转自http://www.cppblog.com/xcpp/archive/2010/01/06/build_wx_app_with_codelite_in_ubuntu.html

Today I spent 5+ hours in this problem so I think it is worth to write down my experience here...


I just started to play with Linux and the open source C++ IDE CodeLite. The IDE and wxWidgets library looks great, and the Linux platform is becoming more and more user friendly today. So I tried to build an application with CodeLite (2.1.3584) in Ubuntu (9.10).

I tried to build a wxWidgets application in Windows before. According to this  article  the thing is quite easy. However, I didn't expect it is so difficult to do the same thing in Linux (simply because I can't find a similar article on Internet). I googled again and again but didn't find much stuff useful.

Here is instructions I used:

1. Install wxWidgets package: sudo apt-get install libwxgtk2.8-dev

2. Install build essentials package: sudo apt-get install build-essential

3. Create a link for "/usr/include/wx-2.8/wx" to "/usr/include/wx", or copy the directory over

4. Create a link for "/usr/lib/wx/include/gtk2-unicode-release-2.8/wx/setup.h" to "/usr/include/wx/setup.h", or copy the file over

5. Open CodeLite IDE, create a project using wxWidgets template

6. Modify the default project settings to:
complier options: -g;$(shell wx-config --cxxflags)
linker options: -mwindows;$(shell wx-config --libs)

7. Complie and run


Without step 6 you may see following errors:

No config found to match: /usr/bin/wx-config --cxxflags --unicode=yes --debug=yes in /usr/lib/wx/config

No Target! You should use wx-config program for compilation flags!

It's because there is no debug library exists in /usr/lib/wx/config. By default there is only release+unicode builds.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值