diff --git a/FeedTheMonkey.pro b/FeedTheMonkey.pro index f555b0c..3bbcbde 100644 --- a/FeedTheMonkey.pro +++ b/FeedTheMonkey.pro @@ -38,9 +38,6 @@ TARGET.CAPABILITY += SwEvent # Additional import path used to resolve QML modules in Qt Creator's code model QML_IMPORT_PATH = -# Default rules for deployment. -include(deployment.pri) - OTHER_FILES += HEADERS += \ 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)