forked from qt-creator/qt-creator
This fixes a regression. $$PWD was missing. Change-Id: I579b1e22fd790280c5d87b6e59e11320fdb1a2af Reviewed-on: http://codereview.qt.nokia.com/1538 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Fawzi Mohamed <fawzi.mohamed@nokia.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
27 lines
598 B
Plaintext
27 lines
598 B
Plaintext
QT += core gui declarative network
|
|
|
|
contains (QT_CONFIG, webkit) {
|
|
QT += webkit
|
|
}
|
|
|
|
DEFINES += QWEAKPOINTER_ENABLE_ARROW
|
|
|
|
include (instances/instances.pri)
|
|
include (../instances/instances.pri)
|
|
include (../commands/commands.pri)
|
|
include (../container/container.pri)
|
|
include (../interfaces/interfaces.pri)
|
|
|
|
SOURCES += $$PWD/main.cpp
|
|
RESOURCES += $$PWD/../qmlpuppet.qrc
|
|
|
|
OTHER_FILES += Info.plist.in
|
|
macx {
|
|
info.input = $$PWD/Info.plist.in
|
|
info.output = $$DESTDIR/$${TARGET}.app/Contents/Info.plist
|
|
QMAKE_SUBSTITUTES += info
|
|
} else {
|
|
target.path = /bin
|
|
INSTALLS += target
|
|
}
|