Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use Qt Creator without qmake?

Tags:

c++

mingw

qt

qmake

I've heard that it is possible to build non-Qt applications (like simple C++ HelloWorld) with Qt Creator. I downloaded and installed Qt Creator, and tried to compile simple code with it. But I didn't succeed: Creator needs qmake to create makefile.

Although the package I downloaded includes MinGW, there is no qmake inside of it.

I still want to use it just like an IDE to create simple C++ sources and compile them with MinGW. Is it possible to use Qt Creator without installing whole platform?

like image 405
Bashuk Avatar asked Apr 28 '11 09:04

Bashuk


1 Answers

Qt Creator support CMake projects, you just need to choose Open a file or project and select the root CMakeList.txt of your project.

If you want to define your own build workflow, you can remove the default build step and create your own custom build steps (Qt Creator Build Steps).

like image 54
Luc Touraille Avatar answered Oct 11 '22 13:10

Luc Touraille