Commit Graph

43 Commits

Author SHA1 Message Date
dt
2b302332b8 Move QtVersionManager, QtVersion and QtOptionsPage back
After all I don't need all that stuff in the cmakeplugin, all i needed
is now bundled in debugginghelper.h/cpp
2009-04-28 12:45:04 +02:00
dt
b6c05a334c Refactoring: Move QtVersionManager instance() into the ProjectExplorer
And add a instance() method to it.
2009-04-22 16:51:38 +02:00
dt
8f22417244 Refactoring: Move QtVersionManager to ProjectExplorer.
The Debugger, cmake and Qt4 plugin all need it. More refactoring to it
coming.
2009-04-22 14:52:35 +02:00
dt
25135e9e2f Long dead code. It even used the QWorkbench namespace.
And there seems to be no value in the code anyway.
2009-04-20 18:06:02 +02:00
dt
e21a74cb35 Change the way the debugging library is build and found, yet again.
We used to build a helper library as part of the project. First with the
qmake -after SOURCES= stuff and after until now with the
gdbmacrosbuildstep. Now, the all new and fancy integretation directtly
into the qt version dialog. You build the debugger library once for
each qt version and then it's there ready to be loaded into each
project build against that qt version. Saves a lot of time.
And makes it possible to also load that library into while debuggign a
cmake project. (Need to hook that up now.)
Unfourtanetly this breaks the custom dumpers if you use a custom run
executable.
2009-03-25 15:18:37 +01:00
dt
b3ec859c80 Fixes: Handle debug and release scopes for TARGET and DESTDIR
Task:     247606
Details:  Remove all the magic which build on top of the cumalative
parser. Instead trust the exact parsing to get those variables correct.
This required a bug fix in the profile evaluator, done with ossi.
Hopefully this doesn't break windows/mac. Will check.
2009-03-19 15:04:43 +01:00
dt
84ce2e5b70 Fixes: Add a makeCommand() virtual function to ToolChain
Details:  Move that code from qt4project to a common class.
2009-03-16 18:13:45 +01:00
dt
00951b6b96 More progress on the CMake plugin
Made the cmake plugin even more usable by implementing:
Pop up a wizard if there is a .user file but no .cbp file. (Fixes empty
project reported on irc.)
Pop up a wizard if the .cbp file is older then the CMakeLists.txt file,
thus reparsing the file. (Note: There is a bug that we need to actually
also check the last modified of all included files.)
Reparse the cbp file to add new RunConfigurations / delete no longer
existing RunConfigurations and update those that have changed.-
Show a nicer title in the Projects/RunConfiguration pane
2009-03-16 17:33:05 +01:00
dt
d83e0e74e6 Fixes: Crash on importing a project
Task:     Reported on irc by roberto
Details:  Initialize the rootProjectNode after the qt4Project is in a
more useable state. Could be that this is now initialized too late. But
that's to be seen.
2009-03-12 15:01:01 +01:00
Oswald Buddenhagen
2593c7798e Merge commit 'origin/1.0.0'
Conflicts:
	doc/qtcreator.qdoc
	src/plugins/qt4projectmanager/qt4project.cpp
	src/tools/qpatch/qpatch.cpp
2009-03-02 12:28:01 +01:00
Roberto Raggi
eefd64dd50 Fixed: C++ parser configuration (2nd try).
We use `cc' instead of `c++' and we also also moved the code in qt4project.cpp.
Done by ossi reviewed by me.
2009-02-26 17:46:28 +01:00
hjk
8ca887aae2 Fixes: change file license headers to include LGPL 2009-02-25 09:15:00 +01:00
hjk
84c82a669b Fixes: change license headers to LGPL 2009-02-25 09:02:17 +01:00
Roberto Raggi
88bb93a665 --debug 2009-02-13 15:54:50 +01:00
dt
9cb615609c Fixes: Another crash
Task:     Also from irc.
2009-02-13 12:02:58 +01:00
dt
e3f748b54f Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainline 2009-02-13 11:13:26 +01:00
dt
f25638f7f5 Fixes: Another crash
Task:     Found on irc.
2009-02-13 11:12:52 +01:00
dt
f60dcda6b6 Fixes: Adjust the toolchain classes to make them work on windows. 2009-02-12 16:09:23 +01:00
dt
73ff2581c7 Fixes: Add Linux icc to the supported toolchains.
Details:  Treat it the same as g++.
2009-02-12 12:44:49 +01:00
dt
113723bb0e Fixes: Don't crash if we don't get any toolchain.
Details:  Stupid me.
2009-02-12 12:39:19 +01:00
dt
15e2ac460f Fixes: Add ToolChain classes.
Details:  These classes replace a number of classes with differing
interfaces by just one class. The design isn't quite perfect, but a lot
better than what it used to be. Also moved the ToolChain classes to the
projectexplorerm so that eventually the cmake plugin can also use them.
2009-02-11 12:16:26 +01:00
dt
d2682828fc Fixes: On session restore, start less indexers.
Details:  This should improve performance a bit. Instead of starting on indexer per .pro file, schedule and compress updates of ui files. And don't update if we have a full project code model update scheduled anyway. Which helps the startup case.
2009-01-28 18:14:01 +01:00
hjk
897c05f57c replace Core::ICore::instance()->pluginManager() by ExtensionSystem::PluginManager::instance() 2009-01-20 15:31:33 +01:00
hjk
113b81e9db replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() by Core::ICore::instance() 2009-01-20 11:52:04 +01:00
hjk
cc5ff1ec74 Remove #include <extensionsystem/pluginmanager.h> from icore.h, a
forward declaration is sufficient.
2009-01-19 12:39:20 +01:00
Thorbjørn Lindeijer
0728e78afb Reintroduced a way to edit project dependencies
Dependencies between projects can now be edited in the Projects mode.
You can simply check for each project the projects that it depends on,
and they will be built first. A message box pops up when you try to
create a circular dependency.

Could use some testing.
2009-01-16 16:44:25 +01:00
dt
33da8c0410 Fixes: Gdbmacros are left even after clean.
Task:     241374
Details:  Clean up what we leave behind, take care to not remove anything else. We run make distclean and remove the files we copies there plus the debug and release directories.
2009-01-16 13:25:38 +01:00
Daniel Molkentin
59affcfffc Bump year in licence header. 2009-01-13 19:22:14 +01:00
con
26c81c54e3 Fixes: - Multiple pro/pri entries in locator project filters
Task:     - 238352
Details:  - Since a while now, pro and pri files are directly part of a
project's file list.
2009-01-06 14:51:45 +01:00
hjk
da3cb14483 chancge Nokia GPL exception version from 1.2 to 1.3 2008-12-16 17:20:00 +01:00
dt
006ee8f16a Fixes: Add migration code to qt4project.cpp for Link Debugging helper
RevBy:    con, hjk
2008-12-15 12:38:04 +01:00
Roberto Raggi
ce66bc3c1e Don't do a GC call when updating the project, it can remove useful "yet not parsed" documents. 2008-12-11 16:36:37 +01:00
dt
ae3fda8b84 Fixes: Don't call Qt4ProFileNode::update on rebuild.
Task:     Found by Roberto.
2008-12-09 17:25:50 +01:00
hjk
342caa2141 some more whitespace changes 2008-12-09 11:07:24 +01:00
dt
942363913c Merge branch '0.9.1-beta' of git@scm.dev.nokia.troll.no:creator/mainline into 0.9.1-beta
Conflicts:
	src/plugins/qt4projectmanager/qtversionmanager.cpp
2008-12-08 12:47:15 +01:00
dt
83d5461c7f Fixes: Find the qplatformdefs.h file
Task:     -
RevBy:    -
AutoTest: -
Details:  Add the include path for qplatformdefs.h to the fot.
2008-12-08 12:44:28 +01:00
Roberto Raggi
d74ddb76b6 Protected m_dirty and m_projects with a mutex. 2008-12-08 10:45:27 +01:00
dt
d6e726ec68 Fixes: Memory usage for loading projects.pro
Details:  Free the whole ProFile*, ProItem*, ProValue* and etc
structure after parsing, that frees around 200Mb for projects.pro.
2008-12-05 14:29:18 +01:00
dt
bd827512bb Fixes: Mem leak in the pro file parser.
Details:  ProFileCache be gone, as is ManagedProFile, not to be missed.
Drastically simplified how ownership works.
2008-12-02 18:14:06 +01:00
hjk
cf11b69643 more code cosmetics 2008-12-02 16:19:05 +01:00
hjk
ab83dcd87c off-by-one in headers 2008-12-02 14:20:25 +01:00
hjk
8a43d9b9f3 end-of-line whitespace correction of the new headers 2008-12-02 14:17:16 +01:00
con
05c35356ab Initial import 2008-12-02 12:01:29 +01:00