summaryrefslogtreecommitdiffstats
path: root/src/tools/bootstrap/bootstrap.pro
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-12-06 19:57:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-14 19:49:38 +0100
commit1824ac4a2db324c94e03bdba4d369a4e7b2cc795 (patch)
tree9813a06ad6bc7add394cbf14dc3423101c385cb5 /src/tools/bootstrap/bootstrap.pro
parent59fc1102f304e3d103eaa5d9cd69acb7402efc28 (diff)
add QStandardPaths to bootstrap lib
it was already bootstrappable, but it was used only for configure.exe. needed for bootstrapping lupdate Change-Id: I0c2bf7db293dda47b3342dfe897a28b34383b1b4 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/tools/bootstrap/bootstrap.pro')
-rw-r--r--src/tools/bootstrap/bootstrap.pro13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/bootstrap/bootstrap.pro b/src/tools/bootstrap/bootstrap.pro
index 34ad46ec48..1c39d1b7a5 100644
--- a/src/tools/bootstrap/bootstrap.pro
+++ b/src/tools/bootstrap/bootstrap.pro
@@ -73,6 +73,7 @@ SOURCES += \
../../corelib/io/qsettings.cpp \
../../corelib/io/qtemporaryfile.cpp \
../../corelib/io/qtextstream.cpp \
+ ../../corelib/io/qstandardpaths.cpp \
../../corelib/kernel/qcoreapplication.cpp \
../../corelib/kernel/qcoreglobaldata.cpp \
../../corelib/kernel/qmetatype.cpp \
@@ -128,6 +129,18 @@ mac {
../../corelib/kernel/qcore_mac.cpp
LIBS += -framework CoreServices
}
+
+macx {
+ SOURCES += \
+ ../../corelib/io/qstandardpaths_mac.cpp
+} else:unix {
+ SOURCES += \
+ ../../corelib/io/qstandardpaths_unix.cpp
+} else {
+ SOURCES += \
+ ../../corelib/io/qstandardpaths_win.cpp
+}
+
*-g++*: QMAKE_CXXFLAGS += -ffunction-sections
if(contains(QT_CONFIG, zlib)|cross_compile):include(../../3rdparty/zlib.pri)