Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Configuration Kit for qt qt creator version 5.2.0 [SOLVED]
Forum Updated to NodeBB v4.3 + New Features

Configuration Kit for qt qt creator version 5.2.0 [SOLVED]

Scheduled Pinned Locked Moved Installation and Deployment
22 Posts 2 Posters 13.5k Views 1 Watching
  • 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.
  • S Offline
    S Offline
    SALA-BANAKISSA
    wrote on last edited by
    #7

    Yes I have a compiler, is that of MinGW 4.8 (32-bit). What do i do now ?

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SALA-BANAKISSA
      wrote on last edited by
      #8

      I removed the MinGW 4.8 (32-bit) compiler to let msvc2012 (32-bit) I have chosen and this is what they told me :

      " 14:58:55: Exécution des étapes pour le projet test...
      14:58:55: Configuration inchangée, étape qmake sautée.
      14:58:55: Débute : "mingw32-make.exe"
      qtcreator_ctrlc_stub: Command line failed: mingw32-make.exe
      14:58:55: Le processus "mingw32-make.exe" s'est terminé avec le code -1.
      Erreur lors de la compilation/déploiement du projet test (kit : Desktop Qt 5.2.0 MSVC2012 32bit)
      Lors de l'exécution de l'étape "Make"
      14:58:55: Temps écoulé : 00:00. "

      1 Reply Last reply
      0
      • JKSHJ Offline
        JKSHJ Offline
        JKSH
        Moderators
        wrote on last edited by
        #9

        [quote]I removed the MinGW 4.8 (32-bit) compiler to let msvc2012 (32-bit) I have chosen[/quote]If you chose the MSVC 2012 package, then you need the MSVC 2012 compiler. Have you installed it? You can download it from http://www.microsoft.com/en-au/download/details.aspx?id=34673

        [quote]14:58:55: Débute : “mingw32-make.exe” [/quote]You removed MinGW, but your project is still configured to use MinGW. You need to fix this.

        Follow these steps to clean your settings:

        Close Qt Creator.

        Go to your project folder and delete the .pro.user file.

        Restart Qt Creator.

        Open your project, and make sure the MSVC 2012 kit is selected.

        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SALA-BANAKISSA
          wrote on last edited by
          #10

          Hi! Sorry for the delay and the long silence, I just make your recommendation, yes I chose the package MSVC 2012 and no I do not have the MSVC 2012 compiler, so I had not installed. Here I just installed and it works, thank you for your help, I was able to issue the configuration kit.

          1 Reply Last reply
          0
          • JKSHJ Offline
            JKSHJ Offline
            JKSH
            Moderators
            wrote on last edited by
            #11

            You're welcome :) Happy coding!

            Please edit your original post and add "[SOLVED]" to the title. That will let other people know that your problem has been solved.

            Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

            1 Reply Last reply
            0
            • S Offline
              S Offline
              SALA-BANAKISSA
              wrote on last edited by
              #12

              I'd like to know, I notice that I miss some libraries such as QPushButton; compiling my program, send me info:
              <<
              " 11:52:30: Exécution des étapes pour le projet test...
              11:52:30: Débute : "C:\Qt\5.2.0\msvc2012\bin\qmake.exe" C:\Users\Etudiant\Documents\qt\test\test.pro -r -spec win32-msvc2012 "CONFIG+=debug" "CONFIG+=declarative_debug" "CONFIG+=qml_debug"
              11:52:31: Le processus "C:\Qt\5.2.0\msvc2012\bin\qmake.exe" s'est terminé normalement.
              11:52:31: Débute : "C:\Qt\Tools\QtCreator\bin\jom.exe"
              C:\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Debug
              cl -c -nologo -Zm200 -Zc:wchar_t -Zi -MDd -GR -W3 -w34100 -w34189 -EHsc -DUNICODE -DWIN32 -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_OPENGL_ES_2 -DQT_OPENGL_ES_2_ANGLE -I"..........\Qt\5.2.0\msvc2012\include" -I"..........\Qt\5.2.0\msvc2012\include\QtGui" -I"..........\Qt\5.2.0\msvc2012\include\QtANGLE" -I"..........\Qt\5.2.0\msvc2012\include\QtCore" -I"debug" -I"." -I"..........\Qt\5.2.0\msvc2012\mkspecs\win32-msvc2012" -Fodebug\ @C:\Users\Etudiant\AppData\Local\Temp\main.obj.3000.0.jom
              main.cpp
              ..\test\main.cpp(2) : fatal error C1083: Impossible d'ouvrir le fichier includeÿ: 'QPushButton'ÿ: No such file or directory
              jom: C:\Users\Etudiant\Documents\qt\build-test-Desktop_Qt_5_2_0_MSVC2012_32bit-Debug\Makefile.Debug [debug\main.obj] Error 2
              jom: C:\Users\Etudiant\Documents\qt\build-test-Desktop_Qt_5_2_0_MSVC2012_32bit-Debug\Makefile [debug] Error 2
              11:52:33: Le processus "C:\Qt\Tools\QtCreator\bin\jom.exe" s'est terminé avec le code 2.
              Erreur lors de la compilation/déploiement du projet test (kit : Desktop Qt 5.2.0 MSVC2012 32bit)
              Lors de l'exécution de l'étape "Make"
              11:52:33: Temps écoulé : 00:02.

              how I can settle this problem?

              1 Reply Last reply
              0
              • JKSHJ Offline
                JKSHJ Offline
                JKSH
                Moderators
                wrote on last edited by
                #13

                Your .pro file needs to include the Qt Widgets module.

                How did you create your project?

                Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  SALA-BANAKISSA
                  wrote on last edited by
                  #14

                  Ok I'll edit my original message and put solved, thank you again to you!

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SALA-BANAKISSA
                    wrote on last edited by
                    #15

                    I created the project normally by following the normal recommendations, where you want to come?

                    1 Reply Last reply
                    0
                    • JKSHJ Offline
                      JKSHJ Offline
                      JKSH
                      Moderators
                      wrote on last edited by
                      #16

                      [quote author="SALA-BANAKISSA" date="1391425698"]I created the project normally by following the normal recommendations, where you want to come?[/quote]Whose recommendations did you follow? Please describe what you did.

                      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                      1 Reply Last reply
                      0
                      • JKSHJ Offline
                        JKSHJ Offline
                        JKSH
                        Moderators
                        wrote on last edited by
                        #17

                        [quote author="SALA-BANAKISSA" date="1391425698"]I created the project normally by following the normal recommendations, where you want to come?[/quote]Whose recommendations did you follow?

                        Please describe what you did.

                        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                        1 Reply Last reply
                        0
                        • S Offline
                          S Offline
                          SALA-BANAKISSA
                          wrote on last edited by
                          #18

                          voici le lien des recommandations que j'ai suivi : " http://fr.openclassrooms.com/informatique/cours/programmez-avec-le-langage-c/introduction-a-qt "
                          it is on this site I followed the procedure for creation of a project on Qt.

                          1 Reply Last reply
                          0
                          • JKSHJ Offline
                            JKSHJ Offline
                            JKSH
                            Moderators
                            wrote on last edited by
                            #19

                            That site is very old. It talks about Qt 4, and a very old version of Qt Creator. Did you notice that your Qt Creator looks very different from the screenshots on that site?

                            Follow this one instead: http://qt-project.org/doc/qt-5/gettingstartedqt.html

                            Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              SALA-BANAKISSA
                              wrote on last edited by
                              #20

                              Yes I just noticed that my Qt Creator is very different from screen captures this site. Thank you for that link, what I will not follow the recommendations contained therein.

                              1 Reply Last reply
                              0
                              • S Offline
                                S Offline
                                SALA-BANAKISSA
                                wrote on last edited by
                                #21

                                I would like to thank you for your help, then I can start my programming, Qt is a wonderful discovery for me, it's very affordable.

                                1 Reply Last reply
                                0
                                • JKSHJ Offline
                                  JKSHJ Offline
                                  JKSH
                                  Moderators
                                  wrote on last edited by
                                  #22

                                  You are welcome :)

                                  Happy coding!

                                  Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                                  1 Reply Last reply
                                  0

                                  • Login

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