mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 08:36:52 +08:00
* Use source path and build path instead of relative ones * Unify pre target dependencies in libraries.pri
27 lines
553 B
Prolog
27 lines
553 B
Prolog
include ($$SourceRoot/config.pri)
|
|
include ($$SourceRoot/build.pri)
|
|
|
|
QT += core dbus gui network concurrent xml
|
|
|
|
TARGET = simulator_fs9
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin shared
|
|
CONFIG += blackmisc blackcore
|
|
|
|
LIBS += -lsimulator_fscommon -lFSUIPC_User -luuid
|
|
|
|
# required for FSUIPC
|
|
win32:!win32-g++*: QMAKE_LFLAGS += /NODEFAULTLIB:LIBC.lib
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
LIBS += -ldxguid -lole32
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
|
|
DESTDIR = $$BuildRoot/bin/plugins/simulator
|
|
include ($$SourceRoot/libraries.pri)
|