summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJooncheol Park <jooncheol.park@windriver.com>2015-04-15 20:45:45 +0900
committerJooncheol Park <jooncheol.park@windriver.com>2015-04-15 20:45:45 +0900
commit7d989b3024428e47a7514d224d65e5209cdb7241 (patch)
tree5219a0fb0b245dcb66dda69ff530bad375e690d9
parentf7517a585ab2ad97af4171700e2930e7be1f6df5 (diff)
downloadaudiomanagerdemo-7d989b3024428e47a7514d224d65e5209cdb7241.tar.gz
set the installation target path in .pro
-rw-r--r--AudioManagerMonitor.pro6
-rw-r--r--deployment.pri27
2 files changed, 3 insertions, 30 deletions
diff --git a/AudioManagerMonitor.pro b/AudioManagerMonitor.pro
index e881732..882dfb6 100644
--- a/AudioManagerMonitor.pro
+++ b/AudioManagerMonitor.pro
@@ -14,7 +14,6 @@ RESOURCES += qml.qrc
QML_IMPORT_PATH =
# Default rules for deployment.
-include(deployment.pri)
FORMS +=
@@ -32,5 +31,6 @@ HEADERS += \
PKGCONFIG += libpulse
-DISTFILES += \
- commandlist.txt
+#DISTFILES +=
+target.path = /usr/bin
+INSTALLS += target
diff --git a/deployment.pri b/deployment.pri
deleted file mode 100644
index 5441b63..0000000
--- a/deployment.pri
+++ /dev/null
@@ -1,27 +0,0 @@
-android-no-sdk {
- target.path = /data/user/qt
- export(target.path)
- INSTALLS += target
-} else:android {
- x86 {
- target.path = /libs/x86
- } else: armeabi-v7a {
- target.path = /libs/armeabi-v7a
- } else {
- target.path = /libs/armeabi
- }
- export(target.path)
- INSTALLS += target
-} else:unix {
- isEmpty(target.path) {
- qnx {
- target.path = /tmp/$${TARGET}/bin
- } else {
- target.path = /opt/$${TARGET}/bin
- }
- export(target.path)
- }
- INSTALLS += target
-}
-
-export(INSTALLS)