Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Unable to build and run the basic project

Unable to build and run the basic project

Scheduled Pinned Locked Moved Solved General and Desktop
6 Posts 3 Posters 578 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • V Offline
    V Offline
    Vijaykarthikeyan
    wrote on last edited by
    #1

    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?

    cristian-adamC 1 Reply Last reply
    0
    • V Vijaykarthikeyan

      @ziller 1a8e93a3-3458-4d8b-9f5a-f50fed2f99fd-image.png

      V Offline
      V Offline
      Vijaykarthikeyan
      wrote on last edited by
      #6

      @Vijaykarthikeyan I uninstalled and reinstalled the compilers..now it is working..But,it is important to learn about configuring the Qt projects

      1 Reply Last reply
      0
      • V Vijaykarthikeyan

        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?

        cristian-adamC Offline
        cristian-adamC Offline
        cristian-adam
        wrote on last edited by
        #2

        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.
        
        V 1 Reply Last reply
        0
        • cristian-adamC cristian-adam

          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.
          
          V Offline
          V Offline
          Vijaykarthikeyan
          wrote on last edited by
          #3

          @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? Screenshot 2023-09-29 175617.png stuck with this part only..how to get rid off this? please help

          Z 1 Reply Last reply
          0
          • V Vijaykarthikeyan

            @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? Screenshot 2023-09-29 175617.png stuck with this part only..how to get rid off this? please help

            Z Offline
            Z Offline
            ziller
            wrote on last edited by
            #4

            @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".

            V 1 Reply Last reply
            3
            • Z ziller

              @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".

              V Offline
              V Offline
              Vijaykarthikeyan
              wrote on last edited by
              #5

              @ziller 1a8e93a3-3458-4d8b-9f5a-f50fed2f99fd-image.png

              V 1 Reply Last reply
              0
              • V Vijaykarthikeyan

                @ziller 1a8e93a3-3458-4d8b-9f5a-f50fed2f99fd-image.png

                V Offline
                V Offline
                Vijaykarthikeyan
                wrote on last edited by
                #6

                @Vijaykarthikeyan I uninstalled and reinstalled the compilers..now it is working..But,it is important to learn about configuring the Qt projects

                1 Reply Last reply
                0
                • V Vijaykarthikeyan has marked this topic as solved on

                • Login

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • Users
                • Groups
                • Search
                • Get Qt Extensions
                • Unsolved