Interested in this question: How to build a Qt-project manually? (Without using the QtCreator development environment from cmd).
I use the MinGW compiler, so I would like to know the compilation commands and its features for QT projects for this compiler.
When qmake * pro writes an error
QMAKESPEC has not been set, so configuration cannot be deduced. Error processing project file: Calculator.pro.
And one more question:
Can I set up another IDE (say Geany) to compile Qt projects and what do I need to do to do this?
C:\Qt\Qt5.7_x64\bin\qmake.exe $pro_path -r -spec win32-g++
(pro_path no matter how strange path to the pro file, thenmingw32-make -f Makefile.Release -j 12
- Bearded Beaver