Difference between revisions of "Install Qt Creator"

From MNE-CPP Wiki
Jump to: navigation, search
(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 [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 Qt Creator by your self by downloading and compiling the source code. The source code is available as a  [zip (29 MB)](http://download.qt-project.org/official_releases/qtcreator/3.3/3.3.2/qt-creator-opensource-src-3.3.2.zip) or a  [tar.gz (22 MB)](http://download.qt-project.org/official_releases/qtcreator/3.3/3.3.2/qt-creator-opensource-src-3.3.2.tar.gz).  
+
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
+
'''Windows'''
    qmake –recursive
+
    nmake
+
    nmake install INSTALL_ROOT="C:\Qt\qt-creator-3.2.2"
+
  
# Linux
+
<source lang=cpp>
    qmake –recursive
+
qmake –recursive
    make
+
nmake
    make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2
+
nmake install INSTALL_ROOT="C:\Qt\qt-creator-3.2.2"
 +
</source>
  
# Mac OS X
+
'''Linux'''
    qmake –recursive
+
 
    make
+
<source lang=cpp>
    make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2
+
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