Files
pilotclient/src/swiftdata/swiftdata.pro
Roland Winklmeier 4aaccb44c3 Cleanup the enabled modules in all sub projects
Most modules were just enabled to add include path for dependent headers
2018-06-02 02:08:46 +02:00

39 lines
822 B
Prolog

load(common_pre)
QT += core dbus network widgets
TARGET = swiftdata
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 = swiftdata.rc
DISTFILES += swiftdata.rc
ICON = swiftdata.icns
DESTDIR = $$DestRoot/bin
target.path = $$PREFIX/bin
INSTALLS += target
macx {
# Modifies plugin path
qtconf.path = $$PREFIX/bin/swiftdata.app/Contents/Resources
qtconf.files = qt.conf
INSTALLS += qtconf
}
load(common_post)