在 Qt Creator 中找不到 .pro 文件

Cannot find .pro file in Qt Creator

我是 Qt 的新手,通过 Qt Creator 教程学习。我正在尝试将 Qt 与 MySQL 数据库连接起来。为此,我必须修改 .pro 文件,添加命令 QT += core sql

但是,一旦我创建了一个项目,菜单中就没有 .pro 文件,只有 .ccp 文件。

安装的程序:Qt Creator 4.13.0

OS: Windows 10 x64

遵循的步骤:

  1. 选择新项目

  2. 选择 Qt 控制台应用程序

  3. 构建系统:CMake

  4. 工具包:我有一些可用;我正在使用 Qt 5.15.1 MSVC2019 64bit

显示的菜单显示 CMakesList.txt 文件和 main.ccp 源文件。但是没有创建 .pro 文件。

对于新的构建系统,您应该修改 CMakeList.txt 文件。

请尝试更换

target_link_libraries(myapp Qt5::Gui)

target_link_libraries(myapp Qt5::Gui Qt5::Sql)