forked from qt-creator/qt-creator
This allows building qml2puppet as part of Qt Creator, if Qt Creator is based on Qt 5. For the moment it has to be build manually. Change-Id: Ide3490fe09c1543d1e09506403f6de1c0bc3819c Reviewed-by: Marco Bubke <marco.bubke@digia.com>
37 lines
907 B
Plaintext
37 lines
907 B
Plaintext
|
|
QT += core gui qml quick network v8
|
|
contains (QT_CONFIG, webkit) {
|
|
QT += webkit
|
|
}
|
|
|
|
QT += core-private qml-private quick-private gui-private script-private v8-private
|
|
|
|
DEFINES += QWEAKPOINTER_ENABLE_ARROW
|
|
|
|
include(../../../../../qtcreator.pri)
|
|
include(../../../../../src/rpath.pri)
|
|
|
|
include (../instances/instances.pri)
|
|
include (instances/instances.pri)
|
|
include (../commands/commands.pri)
|
|
include (../container/container.pri)
|
|
include (../interfaces/interfaces.pri)
|
|
|
|
QT_BREAKPAD_ROOT_PATH = $$(QT_BREAKPAD_ROOT_PATH)
|
|
!isEmpty(QT_BREAKPAD_ROOT_PATH) {
|
|
include($$QT_BREAKPAD_ROOT_PATH/qtbreakpad.pri)
|
|
}
|
|
|
|
SOURCES += $$PWD/main.cpp
|
|
RESOURCES += $$PWD/../qmlpuppet.qrc
|
|
|
|
OTHER_FILES += Info.plist.in
|
|
macx {
|
|
info.input = Info.plist.in
|
|
info.output = $$DESTDIR/$${TARGET}.app/Contents/Info.plist
|
|
QMAKE_SUBSTITUTES += info
|
|
} else {
|
|
target.path = $$QTC_PREFIX/bin
|
|
INSTALLS += target
|
|
}
|