aboutsummaryrefslogtreecommitdiffstats
path: root/src/qtcreatorplugin.pri
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-09-12 14:34:28 +0200
committerDaniel Teske <daniel.teske@digia.com>2014-09-15 12:10:01 +0200
commitca492c8facd3e7b086e17788aded1a8299353a85 (patch)
tree008617a0eebd87ff7e8ac0134dacd896744da131 /src/qtcreatorplugin.pri
parent7dbb9b267865bdaeb9cdd07b4d554f31dfd88305 (diff)
use DISTFILES instead of OTHER_FILES in creator's own build system
it's the correct variable to use. Change-Id: I9ec7795099097715a64969516cd3fae9e213a0f4 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/qtcreatorplugin.pri')
-rw-r--r--src/qtcreatorplugin.pri6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qtcreatorplugin.pri b/src/qtcreatorplugin.pri
index 11916659c6..b88d940314 100644
--- a/src/qtcreatorplugin.pri
+++ b/src/qtcreatorplugin.pri
@@ -81,12 +81,12 @@ defineReplace(stripOutDir) {
PLUGINJSON = $$_PRO_FILE_PWD_/$${TARGET}.json
PLUGINJSON_IN = $${PLUGINJSON}.in
exists($$PLUGINJSON_IN) {
- OTHER_FILES += $$PLUGINJSON_IN
+ DISTFILES += $$PLUGINJSON_IN
QMAKE_SUBSTITUTES += $$PLUGINJSON_IN
PLUGINJSON = $$OUT_PWD/$${TARGET}.json
} else {
# need to support that for external plugins
- OTHER_FILES += $$PLUGINJSON
+ DISTFILES += $$PLUGINJSON
}
osx: QMAKE_LFLAGS_SONAME = -Wl,-install_name,@rpath/PlugIns/
@@ -104,7 +104,7 @@ linux*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF
}
MIMETYPES = $$_PRO_FILE_PWD_/$${TARGET}.mimetypes.xml
-exists($$MIMETYPES):OTHER_FILES += $$MIMETYPES
+exists($$MIMETYPES):DISTFILES += $$MIMETYPES
TARGET = $$qtLibraryName($$TARGET)