Building Qt Creator from Git: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(Simplify page to actually only refer to the README.md for detailed instructions.) |
||
Line 3: | Line 3: | ||
[[Category:Tools::QtCreator]] | [[Category:Tools::QtCreator]] | ||
== | ==Getting the source code== | ||
Qt Creator is open source. The arguably most convenient way to get the Qt Creator sources is with [https://git-scm.com/ Git]. | |||
To get Qt Creator source code from git, you need first to install a [https://git-scm.com/downloads git client]. | |||
If you have the git command client installed, you can then check out the sources from a terminal: | |||
<pre> | <pre> | ||
git clone --recursive https://code.qt.io/qt-creator/qt-creator.git | git clone --recursive https://code.qt.io/qt-creator/qt-creator.git | ||
</pre> | </pre> | ||
This will check out the latest development version of Qt Creator in a qt-creator directory. If you are interested in using other branches of the Qt Creator repository, please see the Qt Creator section at [http://wiki.qt.io/Branches Branch Guidelines]. | |||
Then proceed to read the [https://github.com/qt-creator/qt-creator/blob/master/README.md#compiling-qt-creator Compiling Qt Creator] section in [https://github.com/qt-creator/qt-creator/blob/master/README.md README.md]. You can find the file also in the local qt-creator directory. |
Revision as of 12:56, 23 June 2021
Getting the source code
Qt Creator is open source. The arguably most convenient way to get the Qt Creator sources is with Git.
To get Qt Creator source code from git, you need first to install a git client.
If you have the git command client installed, you can then check out the sources from a terminal:
git clone --recursive https://code.qt.io/qt-creator/qt-creator.git
This will check out the latest development version of Qt Creator in a qt-creator directory. If you are interested in using other branches of the Qt Creator repository, please see the Qt Creator section at Branch Guidelines.
Then proceed to read the Compiling Qt Creator section in README.md. You can find the file also in the local qt-creator directory.