如何配置 Qt Creator 以适用于普通 c++项目?
我是 Qt Creator 的新手。我想做的就是编写一个简单的 C++ 代码并使用 GNU 构建实用程序来构建和运行,因为我根本不会使用 Qt 库。请帮忙。
I'm new to using Qt Creator. All I wanted to do is write a plain c++ code and use GNU build utilities to build and run as I wont be using Qt library at all. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
前几天我正在看这个。
您可以在.pro文件中写入
CONFIG -= qt
。另外,如果需要,您可以在项目设置中设置精确的构建步骤(例如运行make
)。新版本 2.4(仍为测试版)可以选择创建“纯 C++”项目。这也使用
CONFIG -= qt
设置。I was looking at this just the other day.
You can write
CONFIG -= qt
in the .pro file. Also, if you need, you can set up the precise build steps (e.g. runningmake
) in the project settings.The new version 2.4 (still beta) has an option to create a "plain C++" project. This also uses the
CONFIG -= qt
setting.您可以在
pro
文件中关闭 Qt:只需在其中写入QT =
(什么都不)。您可以从项目构建设置中删除qmake
阶段并编写自己的Makefile
。另外,我认为没有理由使用 qtcreator 。
You can turn off Qt in your
pro
file: just writeQT =
(nothing) there. You can removeqmake
stage from your project build settings and write your ownMakefile
.Also, I see no reason to use
qtcreator
then.