summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-02-03 21:19:48 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-28 03:17:11 +0100
commit13455344d7e55118733dfca6abba8662a334eba6 (patch)
tree432725bc0d781dc4be0296b3386bc096e9175321 /tools/configure/configureapp.cpp
parent46feffea1b08767ab8753843beb2d0f93e4a637f (diff)
move generation of qconfig.h forwarding headers to qtbase.pro
less platform-specific code. the qfeatures.h generation is already here. Change-Id: Ied69fb431eed5816fbff63b33be431ee913c2bc8 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index ac794d4c43..9995fb179e 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -3520,23 +3520,6 @@ void Configure::generateConfigfiles()
dictionary[ "DONE" ] = "error";
}
- {
- FileWriter tmpStream(buildPath + "/include/QtCore/qconfig.h");
-
- tmpStream << "#include \"../../src/corelib/global/qconfig.h\"" << endl;
-
- if (!tmpStream.flush())
- dictionary[ "DONE" ] = "error";
- }
- {
- FileWriter tmpStream(buildPath + "/include/QtCore/QtConfig");
-
- tmpStream << "#include \"qconfig.h\"" << endl;
-
- if (!tmpStream.flush())
- dictionary[ "DONE" ] = "error";
- }
-
if (dictionary["EDITION"] == "Evaluation" || qmakeDefines.contains("QT_EVAL")) {
FileWriter tmpStream(buildPath + "/src/corelib/global/qconfig_eval.cpp");