Files
pilotclient/src/swiftcore/swiftcore.pro
Mat Sutcliffe bb65506d22 Fix version number embedding in Windows EXE and DLL files
Remove our Windows resource files (*.rc)
and let qmake generate them instead.
2020-01-07 19:57:27 +00:00

40 lines
836 B
Prolog

load(common_pre)
QT += core dbus network widgets multimedia
TARGET = swiftcore
TEMPLATE = app
SOURCES += *.cpp
HEADERS += *.h
FORMS += *.ui
CONFIG += blackmisc blacksound blackinput blackcore blackgui
DEPENDPATH += . $$SourceRoot/src/blackmisc \
$$SourceRoot/src/blacksound \
$$SourceRoot/src/blackcore \
$$SourceRoot/src/blackinput
INCLUDEPATH += . $$SourceRoot/src
OTHER_FILES += *.qss *.ico *.icns
RC_ICONS = swiftcore.ico
ICON = swiftcore.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/swiftcore.app/Contents/Resources
qtconf.files = qt.conf
INSTALLS += qtconf
}
load(common_post)