how to install the QWT library for Qt creator on windows server 12 (development server)
-
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? -
@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
-
@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). -
@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
-