Files
qt-creator/share/qtcreator/static.pro
Christian Stenger 5299e58cea Shared: Do not copy or install binary artifacts
Change-Id: Ie3b12b790b014f28df31385969a5695bfa73b3a1
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2020-08-04 12:52:58 +00:00

38 lines
770 B
Prolog

TEMPLATE = aux
include(../../qtcreator.pri)
STATIC_BASE = $$PWD
STATIC_OUTPUT_BASE = $$IDE_DATA_PATH
STATIC_INSTALL_BASE = $$INSTALL_DATA_PATH
DATA_DIRS = \
examplebrowser \
snippets \
templates \
themes \
designer \
schemes \
styles \
rss \
debugger \
qmldesigner \
qmlicons \
qml \
qml-type-descriptions \
modeleditor \
glsl \
cplusplus \
indexer_preincludes \
android
macx: DATA_DIRS += scripts
for(data_dir, DATA_DIRS) {
files = $$files($$PWD/$$data_dir/*, true)
# Info.plist.in are handled below
for(file, files):!contains(file, ".*/Info\\.plist\\.in$"):!contains(file, ".*__pycache__.*"):!exists($$file/*): \
STATIC_FILES += $$file
}
include(../../qtcreatordata.pri)