mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
30 lines
593 B
Prolog
30 lines
593 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus network
|
|
|
|
TARGET = sampleblackmiscsim
|
|
TEMPLATE = app
|
|
|
|
CONFIG -= app_bundle
|
|
CONFIG += console
|
|
CONFIG += blackmisc blacksim blackcore
|
|
|
|
# actually not belonging in samples "blackmisc"
|
|
# but before we have not more tests we keep it here
|
|
win32 { CONFIG += fsuipc simulatorfscommon }
|
|
|
|
DEPENDPATH += . ../../src/blackmisc
|
|
DEPENDPATH += . ../../src/blackcore
|
|
DEPENDPATH += . ../../src/plugins/fscommon
|
|
INCLUDEPATH += . ../../src
|
|
|
|
DESTDIR = $$DestRoot/bin
|
|
|
|
HEADERS += *.h
|
|
SOURCES += *.cpp
|
|
|
|
target.path = $$PREFIX/bin
|
|
INSTALLS += target
|
|
|
|
load(common_post)
|