Unable to build and run the basic project
-
I have downloaded Qt creatoe version 11.0.3. Coded the project and while trying to build the project,it shows error like this: 15:14:45: Could not determine which "make" command to run. Check the "make" step in the build configuration.
Error while building/deploying project incline2 (kit: Desktop Qt 5.15.2 MSVC2019 64bit)
When executing step "qmake"In previous versions it did not happened at all..whats wrong the creator?
-
@Vijaykarthikeyan I uninstalled and reinstalled the compilers..now it is working..But,it is important to learn about configuring the Qt projects
-
Just tried it with an existing QMake project, worked fine:
qmake
12:12:39: Running steps for project test-qt-qmake... 12:12:39: Starting: "C:\Qt\5.15.2\msvc2019_64\bin\qmake.exe" C:\Projects\c++\test-qt-qmake\test-qt-qmake.pro -spec win32-msvc "CONFIG+=debug" "CONFIG+=qml_debug" 12:12:39: The process "C:\Qt\5.15.2\msvc2019_64\bin\qmake.exe" exited normally. 12:12:39: Starting: "C:\Qt\qtcreator-11.0.3\bin\jom\jom.exe" -f C:/Projects/c++/build-test-qt-qmake-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug/Makefile qmake_all jom 1.1.4 - empower your cores 12:12:40: The process "C:\Qt\qtcreator-11.0.3\bin\jom\jom.exe" exited normally. 12:12:40: Elapsed time: 00:00.
make
12:13:49: Running steps for project test-qt-qmake... 12:13:49: Configuration unchanged, skipping qmake step. 12:13:49: Starting: "C:\Qt\qtcreator-11.0.3\bin\jom\jom.exe" C:\Qt\qtcreator-11.0.3\bin\jom\jom.exe -f Makefile.Debug 12:13:49: The process "C:\Qt\qtcreator-11.0.3\bin\jom\jom.exe" exited normally. 12:13:49: Elapsed time: 00:00.
-
@cristian-adam yeah..But, even when I tried on the existing project which I have created previously have this same issue. Do I need to specify any system environmental variables?
stuck with this part only..how to get rid off this? please help
-
@Vijaykarthikeyan you somehow got a "make -j 4" into the "Additional arguments" of the qmake build step, which is wrong. You should have a "make" build step below that, and there you can either directly tweak the "Parallel jobs" setting, or add more command line arguments for "make" in "make Arguments".
-
-
@Vijaykarthikeyan I uninstalled and reinstalled the compilers..now it is working..But,it is important to learn about configuring the Qt projects