summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-07-24 13:38:22 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-12 19:01:45 +0200
commitae95f289975636ba6cacc147f6723615b6d36cfa (patch)
tree80fc241feb5beea74152c2001d91cc97eeca6983 /tools/configure/configureapp.cpp
parent684028a64075030b42ce5f3d78d5cb35b936d5b1 (diff)
bye-bye .qmake.cache
well, not really - qt_parts.prf will still create one, but it will be empty. apart from being cleaner, this now finally makes it possible to load an unconfigured qt source tree into qtcreator without random parts of the tree being missing from the project explorer. Change-Id: Ida7ee77ecb450af05bfa66106caf2067b02f1a7f Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index de91a1558d..7a14043d75 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -2812,17 +2812,6 @@ void Configure::generateOutputVars()
void Configure::generateCachefile()
{
- // Generate .qmake.cache
- {
- FileWriter cacheStream(buildPath + "/.qmake.cache");
-
- cacheStream << "QT_SOURCE_TREE = " << formatPath(dictionary["QT_SOURCE_TREE"]) << endl;
- cacheStream << "QT_BUILD_TREE = " << formatPath(dictionary["QT_BUILD_TREE"]) << endl;
-
- if (!cacheStream.flush())
- dictionary[ "DONE" ] = "error";
- }
-
// Generate qmodule.pri
{
FileWriter moduleStream(dictionary[ "QT_BUILD_TREE" ] + "/mkspecs/qmodule.pri");