Reputation: 21
In Qt Design Studio, I created a mobile project and set up CMake for export.
When I opened the CMakeLists.txt
file in Qt Creator, I encountered this error in the project explorer:
CMake project configuration failed. No Make configuration for build type "Debug" found. Check General Messages for more information.
My goal is to use Design Studio to develop both the GUI and backend with Creator within the same project, allowing for easy modifications to the UI files.
I even attempted to create a project in Qt Creator and then open it in Design Studio, but I couldn't locate the .qmlproject
file to open in Design Studio.
I'm not sure what I'm doing wrong.
Upvotes: 2
Views: 76
Reputation: 51
by default the qmlproject is not created in the Quick (QML) project setup in the latest Qt Creator. But you can find the workflow to work with Qt DS and Creator if you create the project with template 'Other Project -> Qt Quick UI Prototype' which you will find in Qt Creator's project creator. This is done by marking "Create a project taht you can open in Qt Design Studio" when going through the wizard. I verified this with Qt Creator 15 and Qt DS 4.6.
Upvotes: 1