forked from qt-creator/qt-creator
This is essentially a widgets based re-implementation
of the current design. It is still using the QAIM based
interface layer between to the real data and display even
though this is not needed with this approach.
Removal of this layer would further reduce code size
and cycle counts.
For now:
old new
Load time 215ms 182ms
delete 22ms 2ms
Change-Id: I90d779a60a47a78399eaad0f1bc032d39f3ae3c0
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
36 lines
695 B
Prolog
36 lines
695 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
|
|
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)
|