How do i get the latest QtCreator Binary?
-
Hello,
How do I get the latest QtCreator binary installer? I'm not very good with git. And i don't know of any quick tutorials.Thanks
-
Head to Downloads pane. Or get the latest snapshot from Jenkins (sorry but I can't seem to be able to find the URL right now).
You don't need to know git to get QtC, gitorious allows to download a repo as a tarball. And compiling QtC is just a simple qmake/ make process, nothing complicated.
Getting to know git better is also a good idea :)
-
[quote author="sierdzio" date="1363156647"]... Or get the latest snapshot from Jenkins (sorry but I can't seem to be able to find the URL right now).[/quote]
-
Hey, thank you for that :)
-
Thanks guys. found a nice git tutorial on youtube. :) i'm going to the link you've sent but i guess i should still check this tutorial out!
-
All you need to build Qt Creator from git is to use:
@
git clone git://gitorious.org/qt-creator/qt-creator.git
cd qt-creator
mkdir build
cd build
qmake ../qtproject.pro
make -jN
#where N is more or less the number of cores in your CPU
@Then wait a bit (in my case with -j9 and clang it takes about 12 minutes, IIRC).