blob: 4d0ebb4c0ce22f546541cc80dabc63dc6b7e2169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
TARGET = qml2puppet
TEMPLATE = app
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)
DESTDIR = $$[QT_INSTALL_BINS]
include(../../../../../src/rpath.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 += main.cpp
RESOURCES += ../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
}
|