summaryrefslogtreecommitdiffstats
path: root/installerbuilder/installerbase/installerbase.pro
diff options
context:
space:
mode:
Diffstat (limited to 'installerbuilder/installerbase/installerbase.pro')
-rw-r--r--installerbuilder/installerbase/installerbase.pro41
1 files changed, 41 insertions, 0 deletions
diff --git a/installerbuilder/installerbase/installerbase.pro b/installerbuilder/installerbase/installerbase.pro
new file mode 100644
index 000000000..73c74d474
--- /dev/null
+++ b/installerbuilder/installerbase/installerbase.pro
@@ -0,0 +1,41 @@
+TEMPLATE = app
+TARGET = installerbase
+
+DEPENDPATH += . ..
+INCLUDEPATH += . ..
+
+DEFINES += QT_NO_CAST_FROM_ASCII
+
+win32:RC_FILE = installerbase.rc
+
+DESTDIR = ../bin
+
+CONFIG += help
+QTPLUGIN += qsqlite
+
+CONFIG -= app_bundle
+
+include(../libinstaller/libinstaller.pri)
+
+QT += network
+
+HEADERS += tabcontroller.h \
+ installerbasecommons.h \
+ maintabwidget.h
+
+SOURCES = installerbase.cpp \
+ tabcontroller.cpp \
+ installerbasecommons.cpp \
+ maintabwidget.cpp
+
+RESOURCES += installerbase.qrc
+
+win32-msvc2005 {
+ CONFIG += embed_manifest_exe #msvc2008 is doing this automaticaly
+}
+
+embed_manifest_exe:win32-msvc2005 {
+ # The default configuration embed_manifest_exe overrides the manifest file
+ # already embedded via RC_FILE. Vs2008 already have the necessary manifest entry
+ QMAKE_POST_LINK += $$quote(mt.exe -updateresource:$$DESTDIR/$${TARGET}.exe -manifest \"$${PWD}\\$${TARGET}.exe.manifest\")
+}