Cannot find .pro file
Unsolved
General and Desktop
-
wrote on 21 Sept 2020, 15:43 last edited by
Hi there,
I'm new to Qt, learning through a Qt Creator tutorial. I am trying to connect Qt with a MySQL database. To do so, I have to modify a .pro file adding the command QT += core sql
however, once I create a project there is no .pro file in the menu, only the .ccp file, I would really appreciate your help with this.
Program installed: Qt Creator 4.13.0
OS: Windows 10 x64
Steps followed:- New Project
- Qt Console Application
- Build system: CMake
- Kits: I have some available; I am using Qt 5.15.1 MSVC2019 64bit
The menu displayed shows a CMakesList.txt file, and the main.ccp source file. However no .pro file is created.
Thanks very much for your help with some hints to fix this problem.
-
wrote on 21 Sept 2020, 15:46 last edited by
If you chose a
CMake
project, aCMakeLists.txt
file will be used. You have to chooseqmake
as build system to get a.pro
file.
2/2