Files
qt-creator/share/qtcreator/static.pro
Marco Bubke 2d520140d0 Clang: Fix system pre include search path
We now get the resource path from creator. The -fPIC case is working now
too.

Change-Id: Id191e89e6d46706748d50440038a06a349972cc9
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
2019-04-29 12:52:05 +00:00

37 lines
721 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
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$"):!exists($$file/*): \
STATIC_FILES += $$file
}
include(../../qtcreatordata.pri)