Files
pilotclient/src/swiftguistandard/swiftguistandard.pro
Roland Rossgotterer 7951b9f15d Remove quickwidgets dependency from swiftguistandard
Even though it is not used, MacOS clang decided to link it
anyway and require the library at runtime.
2019-10-12 13:25:42 +02:00

42 lines
913 B
Prolog

load(common_pre)
QT += core dbus network widgets multimedia
TARGET = swiftguistd
TEMPLATE = app
SOURCES += *.cpp
HEADERS += *.h
FORMS += *.ui
CONFIG += blackconfig blackmisc blacksound blackinput blackcore blackgui
DEPENDPATH += . $$SourceRoot/src/blackmisc \
$$SourceRoot/src/blacksound \
$$SourceRoot/src/blackcore \
$$SourceRoot/src/blackgui \
$$SourceRoot/src/blackinput
INCLUDEPATH += . $$SourceRoot/src
OTHER_FILES += *.qss *.ico *.rc *.icns
RC_FILE = swift.rc
DISTFILES += swift.rc
ICON = swift.icns
DESTDIR = $$DestRoot/bin
target.path = $$PREFIX/bin
INSTALLS += target
macx {
QMAKE_TARGET_BUNDLE_PREFIX = "org.swift-project"
QMAKE_INFO_PLIST = Info.plist
# Modifies plugin path
qtconf.path = $$PREFIX/bin/swiftguistd.app/Contents/Resources
qtconf.files = qt.conf
INSTALLS += qtconf
}
load(common_post)