PDA

View Full Version : Qt Creator old source code: where to find the sources of Qt Creator 5.2.0?



mut
13th June 2014, 00:57
Hello;

I'm doing a plugin project and I need to have the old sources of Qt Creator. I need the source code of Qt Creator 5.2.0?

Thanks;

Mut.

anda_skoa
13th June 2014, 09:23
As far as I know the most recent version of Qt Creator is 3.x

In any case, the GIT repository of Qt Creator is here: https://qt.gitorious.org/qt-creator/qt-creator

Cheers,
_

mut
13th June 2014, 16:03
Thanks for the reply. I meant Qt 5.2.0 and sources of Qt Creator 3.0.0

Added after 6 minutes:

Not sure, where are exactly the source of Qt Creator 3.0.0 in your link? do I need to have a git account?

anda_skoa
13th June 2014, 17:23
You don't need a gitorious account to clone the repository, it is world readable, i.e. allows anonmyous access.

The version you are looking for is probably available as a tag, less likely as a branch.

Cheers,
_

mut
13th June 2014, 19:02
Which tag precisely?

Sorry, is there someplace else that I can access these sources?

Thanks;

Mut.

ChrisW67
13th June 2014, 20:30
The binaries and source for older versions are both available from the http://qt-project.org/downloads page. Click the Show Downloads button and then look for the Older Versions heading.

Older Versions http://download.qt-project.org/archive/qt/
Specifically http://download.qt-project.org/archive/qt/5.2/5.2.0/single/

mut
13th June 2014, 22:42
Got it, thank you so much.

Added after 1 37 minutes:

However there is a problem. Your sources does not seem to be the same (folder organization and content) as the one of of Qt 3.0.1?

Your link is only the source code of Qt libraries and not the source code of Qt Creator 5.2.0!.

ChrisW67
14th June 2014, 12:07
There is no such beast as Qt Creator 5.2.0.

Thanks for the reply. I meant Qt 5.2.0
I gave you a direct link to the Qt 5.2.0 sources you asked for. I also expected you might discover the Qt Creator sources, including older versions, are available from the same general place. Hint: look for the "Archive for old versions" link.

Unfortunately there is no tar ball for Qt Creator 3.0.0 but it is available from the repository:
https://qt.gitorious.org/qt-creator/qt-creator/source/v3.0.0:#

mut
16th June 2014, 02:29
Thank you for the reply.
I found these sources here http://download.qt-project.org/official_releases/qtcreator/3.0/3.0.0/ as well. Apparently, in mine and yours, there is not makefile to build these sources into the Qt Creator application.
Where is the makefile to produce debug and release versions using "> mingw32-make release"

Added after 12 minutes:

There should be a makefile in the same location as myproject.pro

Added after 9 minutes:

This is what I have on my mingw32 DOS console> C:\qt-creator-opensource-src-3.0.0>mingw32-make release mingw32-make: *** No rule to make target 'release'. Stop.

wysota
16th June 2014, 10:14
Did you read the README file that comes with the code archive? Specifically the "Compiling Qt Creator" part?

mut
16th June 2014, 15:40
You are right, got it. Thank you so much, it works!.
Mut