summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/testapp/testapp.pro17
1 files changed, 13 insertions, 4 deletions
diff --git a/examples/testapp/testapp.pro b/examples/testapp/testapp.pro
index fc981e27f..418d582ca 100644
--- a/examples/testapp/testapp.pro
+++ b/examples/testapp/testapp.pro
@@ -8,7 +8,7 @@ include(../../installerfw.pri)
warning("You can use this example only with a static build of Qt and IFW!")
}
-DESTDIR = packages/com.nokia.testapp/data
+DESTDIR = $$IFW_BUILD_TREE/examples/testapp/packages/com.nokia.testapp/data
FORMS += \
componentselectiondialog.ui \
@@ -30,7 +30,16 @@ SOURCES += main.cpp \
RESOURCES += testapp.qrc
-isEqual(IFW_SOURCE_TREE, $$IFW_BUILD_TREE) {
- macx:QMAKE_POST_LINK = ($$IFW_APP_PATH/binarycreator -p $$PWD/packages -c $$PWD/config -t $$IFW_APP_PATH/installerbase TestAppInstaller.app)
- win32:QMAKE_POST_LINK = ($$IFW_APP_PATH/binarycreator.exe -p $$PWD/packages -c $$PWD/config -t $$IFW_APP_PATH/installerbase.exe TestAppInstaller.exe)
+macx {
+ QMAKE_POST_LINK = ($$IFW_APP_PATH/binarycreator -p $$IFW_SOURCE_TREE/examples/testapp/packages \
+ -c $$IFW_SOURCE_TREE/examples/testapp/config/config.xml -t $$IFW_APP_PATH/installerbase \
+ TestAppInstaller.app
+} win32: {
+ QMAKE_POST_LINK = ($$IFW_APP_PATH/binarycreator.exe -p $$IFW_SOURCE_TREE/examples/testapp/packages \
+ -c $$IFW_SOURCE_TREE/examples/testapp/config/config.xml -t $$IFW_APP_PATH/installerbase.exe \
+ TestAppInstaller.exe)
+} else {
+ QMAKE_POST_LINK = ($$IFW_APP_PATH/binarycreator -p $$IFW_SOURCE_TREE/examples/testapp/packages \
+ -c $$IFW_SOURCE_TREE/examples/testapp/config/config.xml -t $$IFW_APP_PATH/installerbase \
+ TestAppInstaller)
}