Install Qt Creator

From MNE-CPP Wiki
Revision as of 15:30, 19 January 2016 by LorenzE (Talk | contribs) (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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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).

To compile the Qt Creator do the following:

  1. Windows
   qmake –recursive
   nmake
   nmake install INSTALL_ROOT="C:\Qt\qt-creator-3.2.2"
  1. Linux
   qmake –recursive
   make
   make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2
  1. Mac OS X
   qmake –recursive
   make
   make install INSTALL_ROOT=/path/to/your/Qt/qt-creator-3.2.2