将Qt 4.6.3应用程序从Windows移植到Linux。移植项目的标准方法是导出.pri文件,将其复制到Linux框中,然后在其上运行qmake - 对吗?我做到了,我得到了一个makefile。然而,makefile似乎被调整为进行发布构建(直到定义NO_DEBUG宏);在Linux上获得调试版本的标准方法是什么?
答案 0 :(得分:2)
在qmake项目(.pro)文件(包含.pri文件?)中,将其添加到CONFIG
变量中。
CONFIG += debug
此处提供更多信息:http://pepper.troll.no/s60prereleases/doc/qmake-tutorial.html#making-an-application-debuggable