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
25 lines
459 B
Prolog
25 lines
459 B
Prolog
include ($$SourceRoot/config.pri)
|
|
include ($$SourceRoot/build.pri)
|
|
|
|
QT += core dbus concurrent xml
|
|
|
|
TARGET = simulator_fscommon
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += staticlib
|
|
CONFIG += blackmisc
|
|
|
|
LIBS += -lFSUIPC_User
|
|
|
|
# required for FSUIPC
|
|
win32:!win32-g++*: QMAKE_LFLAGS += /NODEFAULTLIB:LIBC.lib
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
|
|
DESTDIR = $$BuildRoot/lib
|
|
include ($$SourceRoot/libraries.pri)
|