Difference between revisions of "Install Qt Creator"
From MNE-CPP Wiki
(Created page with "You can either [download](http://www.qt.io/download-open-source/#section-2) (Select "View All Downloads") and install Qt Creator using the binaries directly, or you can build...") |
|||
Line 1: | Line 1: | ||
− | You can either [ | + | You can either [http://www.qt.io/download-open-source/#section-2 download] (Select "View All Downloads") and install Qt Creator using the binaries directly, or you can build Qt Creator by your self by downloading and compiling the source code. The source code is available as a [http://download.qt-project.org/official_releases/qtcreator/3.3/3.3.2/qt-creator-opensource-src-3.3.2.zip zip (29 MB)] or a [http://download.qt-project.org/official_releases/qtcreator/3.3/3.3.2/qt-creator-opensource-src-3.3.2.tar.gz tar.gz (22 MB)]. |
To compile the Qt Creator do the following: | To compile the Qt Creator do the following: | ||
− | + | '''Windows''' | |
− | + | ||
− | + | ||
− | + | ||
− | + | <source lang=cpp> | |
− | + | qmake –recursive | |
− | + | nmake | |
− | + | nmake install INSTALL_ROOT="C:\Qt\qt-creator-3.2.2" | |
+ | </source> | ||
− | + | '''Linux''' | |
− | + | ||
− | + | <source lang=cpp> | |
− | + | qmake –recursive | |
+ | make | ||
+ | make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2 | ||
+ | </source> | ||
+ | |||
+ | '''Mac OS X''' | ||
+ | |||
+ | <source lang=cpp> | ||
+ | qmake –recursive | ||
+ | make | ||
+ | make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2 | ||
+ | </source> |
Latest revision as of 17:53, 21 January 2016
You can either download (Select "View All Downloads") and install Qt Creator using the binaries directly, or you can build Qt Creator by your self by downloading and compiling the source code. The source code is available as a zip (29 MB) or a tar.gz (22 MB).
To compile the Qt Creator do the following:
Windows
qmake –recursive nmake nmake install INSTALL_ROOT="C:\Qt\qt-creator-3.2.2"
Linux
qmake –recursive make make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2
Mac OS X
qmake –recursive make make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2