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. how to install the QWT library for Qt creator on windows server 12 (development server)
Forum Updated to NodeBB v4.3 + New Features

how to install the QWT library for Qt creator on windows server 12 (development server)

Scheduled Pinned Locked Moved Solved General and Desktop
33 Posts 4 Posters 10.4k Views 2 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.
  • T Offline
    T Offline
    thippu
    wrote on 20 Aug 2018, 11:13 last edited by
    #1

    Hi Guys,
    I would like to install the QWT library on the windows server 12, because I'm using it right now for the development purpose, On that, I could not find the MinGw administrative compiler, But I do have QT creator installed and working fine, So Please help me how to install it?

    J 1 Reply Last reply 20 Aug 2018, 11:45
    0
    • T thippu
      20 Aug 2018, 11:13

      Hi Guys,
      I would like to install the QWT library on the windows server 12, because I'm using it right now for the development purpose, On that, I could not find the MinGw administrative compiler, But I do have QT creator installed and working fine, So Please help me how to install it?

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 20 Aug 2018, 11:45 last edited by
      #2

      @thippu said in how to install the QWT library for Qt creator on windows server 12 (development server):

      MinGw administrative compiler

      What is this?

      Installation is described here: http://qwt.sourceforge.net/#installonmainpage

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      T 1 Reply Last reply 20 Aug 2018, 11:56
      0
      • J jsulm
        20 Aug 2018, 11:45

        @thippu said in how to install the QWT library for Qt creator on windows server 12 (development server):

        MinGw administrative compiler

        What is this?

        Installation is described here: http://qwt.sourceforge.net/#installonmainpage

        T Offline
        T Offline
        thippu
        wrote on 20 Aug 2018, 11:56 last edited by
        #3

        @jsulm I have seen this, but It needs the Qt MinGw compiler and I can't find it in the start button windows server 2012 so I need the help from you guys to find out.

        J 1 Reply Last reply 20 Aug 2018, 11:59
        0
        • T thippu
          20 Aug 2018, 11:56

          @jsulm I have seen this, but It needs the Qt MinGw compiler and I can't find it in the start button windows server 2012 so I need the help from you guys to find out.

          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 20 Aug 2018, 11:59 last edited by jsulm
          #4

          @thippu said in how to install the QWT library for Qt creator on windows server 12 (development server):

          can't find it in the start button windows server 2012

          You don't need the Start button for that (a compiler is a command line tool, and you do not need to call it directly).
          See here: http://qwt.sourceforge.net/qwtinstall.html
          You just need to use qmake.exe from your MinGW Qt installation (c:\Qt\5.11.1\mingw53_32\bin\qmake.exe). And then mingw32-make from your MinGW set-up (usually c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe).

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          T 1 Reply Last reply 20 Aug 2018, 12:05
          0
          • J jsulm
            20 Aug 2018, 11:59

            @thippu said in how to install the QWT library for Qt creator on windows server 12 (development server):

            can't find it in the start button windows server 2012

            You don't need the Start button for that (a compiler is a command line tool, and you do not need to call it directly).
            See here: http://qwt.sourceforge.net/qwtinstall.html
            You just need to use qmake.exe from your MinGW Qt installation (c:\Qt\5.11.1\mingw53_32\bin\qmake.exe). And then mingw32-make from your MinGW set-up (usually c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe).

            T Offline
            T Offline
            thippu
            wrote on 20 Aug 2018, 12:05 last edited by
            #5

            @jsulm Yeah, I did click on the qmake.exe, It executed some auto cmds and the mingw32-make.exe did flash and auto closed, I don't know what to do.

            T J 2 Replies Last reply 20 Aug 2018, 12:08
            0
            • T thippu
              20 Aug 2018, 12:05

              @jsulm Yeah, I did click on the qmake.exe, It executed some auto cmds and the mingw32-make.exe did flash and auto closed, I don't know what to do.

              T Offline
              T Offline
              thippu
              wrote on 20 Aug 2018, 12:08 last edited by
              #6

              @thippu Buddy, could you see this link and tell me where I have to correct myself?
              https://www.youtube.com/watch?v=ZqFKwF6q7jQ&t=109s

              1 Reply Last reply
              0
              • T thippu
                20 Aug 2018, 12:05

                @jsulm Yeah, I did click on the qmake.exe, It executed some auto cmds and the mingw32-make.exe did flash and auto closed, I don't know what to do.

                J Offline
                J Offline
                jsulm
                Lifetime Qt Champion
                wrote on 20 Aug 2018, 12:08 last edited by
                #7

                @thippu Please don't click anything! You need to use the command line, not the mouse. So, download and extract the QWT source code (or check it out from Git). Create a directory (lets say build_dir) and go there:

                cd c:\build_dir
                c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro
                c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe
                c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe install
                

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                T 2 Replies Last reply 20 Aug 2018, 12:49
                3
                • J jsulm
                  20 Aug 2018, 12:08

                  @thippu Please don't click anything! You need to use the command line, not the mouse. So, download and extract the QWT source code (or check it out from Git). Create a directory (lets say build_dir) and go there:

                  cd c:\build_dir
                  c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro
                  c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe
                  c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe install
                  
                  T Offline
                  T Offline
                  thippu
                  wrote on 20 Aug 2018, 12:49 last edited by
                  #8

                  @jsulm I could not get what I have to do after the cd cmd from your comment.

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 20 Aug 2018, 21:25 last edited by SGaist
                    #9

                    Hi,

                    Write the commands one line after the other as @jsulm shows in his post.

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • J jsulm
                      20 Aug 2018, 12:08

                      @thippu Please don't click anything! You need to use the command line, not the mouse. So, download and extract the QWT source code (or check it out from Git). Create a directory (lets say build_dir) and go there:

                      cd c:\build_dir
                      c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro
                      c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe
                      c:\Qt\Tools\mingw530_32\bin\mingw32-make.exe install
                      
                      T Offline
                      T Offline
                      thippu
                      wrote on 23 Aug 2018, 04:36 last edited by
                      #10

                      @SGaist , @jsulm could you clarify "c:\Qt\5.11.1\mingw53_32\bin\qmake.exe" and "c:\qwt_src\qwt.pro" are to be executed on same line ?

                      J 1 Reply Last reply 23 Aug 2018, 04:37
                      0
                      • T thippu
                        23 Aug 2018, 04:36

                        @SGaist , @jsulm could you clarify "c:\Qt\5.11.1\mingw53_32\bin\qmake.exe" and "c:\qwt_src\qwt.pro" are to be executed on same line ?

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 23 Aug 2018, 04:37 last edited by
                        #11

                        @thippu

                        c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro
                        

                        here you're calling qmake.exe and give it c:\qwt_src\qwt.pro as parameter...

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        T 1 Reply Last reply 23 Aug 2018, 04:51
                        0
                        • J jsulm
                          23 Aug 2018, 04:37

                          @thippu

                          c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro
                          

                          here you're calling qmake.exe and give it c:\qwt_src\qwt.pro as parameter...

                          T Offline
                          T Offline
                          thippu
                          wrote on 23 Aug 2018, 04:51 last edited by
                          #12

                          @jsulm I did execute second line "c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro" on build_dir output is project ERROR: cannot run the compiler "g++' , output : g++ not recongnized as internal or external command,

                          **I do I have to execute the second line in c:\Qt\5.11.1\mingw53_32\bin **

                          J 1 Reply Last reply 23 Aug 2018, 04:53
                          0
                          • T thippu
                            23 Aug 2018, 04:51

                            @jsulm I did execute second line "c:\Qt\5.11.1\mingw53_32\bin\qmake.exe c:\qwt_src\qwt.pro" on build_dir output is project ERROR: cannot run the compiler "g++' , output : g++ not recongnized as internal or external command,

                            **I do I have to execute the second line in c:\Qt\5.11.1\mingw53_32\bin **

                            J Offline
                            J Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on 23 Aug 2018, 04:53 last edited by
                            #13

                            @thippu Press Win key on your keyboard and enter "MinGW" you will get a short-cut to a CMD window which prepares the environment to use MinGW. Execute all the commands in this CMD.

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            T 1 Reply Last reply 23 Aug 2018, 04:58
                            0
                            • J jsulm
                              23 Aug 2018, 04:53

                              @thippu Press Win key on your keyboard and enter "MinGW" you will get a short-cut to a CMD window which prepares the environment to use MinGW. Execute all the commands in this CMD.

                              T Offline
                              T Offline
                              thippu
                              wrote on 23 Aug 2018, 04:58 last edited by
                              #14

                              @jsulm Sorry to say this, Qt environment has been installed on the D: because of disk full in the C:,
                              I did press the Win and typed the MinGW but It is not getting popped.
                              what to do?

                              J 1 Reply Last reply 23 Aug 2018, 05:00
                              0
                              • T thippu
                                23 Aug 2018, 04:58

                                @jsulm Sorry to say this, Qt environment has been installed on the D: because of disk full in the C:,
                                I did press the Win and typed the MinGW but It is not getting popped.
                                what to do?

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 23 Aug 2018, 05:00 last edited by
                                #15

                                @thippu If it is on D then simply replace C with D in the path.
                                The CMD is located in d:\Qt\5.11.1\mingw53_32\bin\qtenv2.bat

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                T 2 Replies Last reply 23 Aug 2018, 05:04
                                0
                                • J jsulm
                                  23 Aug 2018, 05:00

                                  @thippu If it is on D then simply replace C with D in the path.
                                  The CMD is located in d:\Qt\5.11.1\mingw53_32\bin\qtenv2.bat

                                  T Offline
                                  T Offline
                                  thippu
                                  wrote on 23 Aug 2018, 05:04 last edited by
                                  #16

                                  @jsulm I have done it in the address.

                                  1 Reply Last reply
                                  0
                                  • J jsulm
                                    23 Aug 2018, 05:00

                                    @thippu If it is on D then simply replace C with D in the path.
                                    The CMD is located in d:\Qt\5.11.1\mingw53_32\bin\qtenv2.bat

                                    T Offline
                                    T Offline
                                    thippu
                                    wrote on 23 Aug 2018, 05:05 last edited by
                                    #17

                                    @jsulm shall I execute cmd "qtenv2.bat" on "d:\Qt\5.11.1\mingw53_32\bin" ?

                                    J 1 Reply Last reply 23 Aug 2018, 05:07
                                    0
                                    • T thippu
                                      23 Aug 2018, 05:05

                                      @jsulm shall I execute cmd "qtenv2.bat" on "d:\Qt\5.11.1\mingw53_32\bin" ?

                                      J Offline
                                      J Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on 23 Aug 2018, 05:07 last edited by
                                      #18

                                      @thippu Yes, double click it...

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      T 1 Reply Last reply 23 Aug 2018, 05:12
                                      0
                                      • J jsulm
                                        23 Aug 2018, 05:07

                                        @thippu Yes, double click it...

                                        T Offline
                                        T Offline
                                        thippu
                                        wrote on 23 Aug 2018, 05:12 last edited by thippu
                                        #19

                                        @jsulm yes, It said "Setting up the environment for Qt usage.... " thats all, next what has to be done?

                                        J JKSHJ 2 Replies Last reply 23 Aug 2018, 05:15
                                        0
                                        • T thippu
                                          23 Aug 2018, 05:12

                                          @jsulm yes, It said "Setting up the environment for Qt usage.... " thats all, next what has to be done?

                                          J Offline
                                          J Offline
                                          jsulm
                                          Lifetime Qt Champion
                                          wrote on 23 Aug 2018, 05:15 last edited by
                                          #20

                                          @thippu I already said that you need to enter all the commands I mentioned above in that CMD window...

                                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                                          1 Reply Last reply
                                          1

                                          8/33

                                          20 Aug 2018, 12:49

                                          topic:navigator.unread, 25
                                          • Login

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