如何配置 Qt Creator 以适用于普通 c++项目?

发布于 2024-12-15 07:45:53 字数 85 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初心未许 2024-12-22 07:45:53

前几天我正在看这个。

您可以在.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. running make) 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.

画骨成沙 2024-12-22 07:45:53

您可以在 pro 文件中关闭 Qt:只需在其中写入 QT = (什么都不)。您可以从项目构建设置中删除 qmake 阶段并编写自己的 Makefile

另外,我认为没有理由使用 qtcreator 。

You can turn off Qt in your pro file: just write QT = (nothing) there. You can remove qmake stage from your project build settings and write your own Makefile.

Also, I see no reason to use qtcreator then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文