mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 11:55:35 +08:00
41 lines
843 B
Prolog
41 lines
843 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus gui svg network xml multimedia
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = swiftguistd
|
|
TEMPLATE = app
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
FORMS += *.ui
|
|
CONFIG += blackmisc blacksound blackinput blackcore blackgui
|
|
|
|
macx {
|
|
CONFIG += app_bundle
|
|
|
|
deployment.files = ../blackgui/qss
|
|
deployment.path = Contents/MacOS
|
|
QMAKE_BUNDLE_DATA += deployment
|
|
}
|
|
|
|
DEPENDPATH += . $$SourceRoot/src/blackmisc \
|
|
$$SourceRoot/src/blacksound \
|
|
$$SourceRoot/src/blackcore \
|
|
$$SourceRoot/src/blackgui \
|
|
$$SourceRoot/src/blackinput
|
|
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
OTHER_FILES += *.qss *.ico *.rc
|
|
RC_FILE = swift.rc
|
|
DISTFILES += swift.rc
|
|
|
|
DESTDIR = $$DestRoot/bin
|
|
|
|
target.path = $$PREFIX/bin
|
|
INSTALLS += target
|
|
|
|
load(common_post)
|