mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
refs #74 , added project BlackSim for simulator related classes
This commit is contained in:
@@ -7,6 +7,7 @@ include (externals.pri)
|
||||
WITH_BLACKMISC = ON
|
||||
WITH_BLACKCORE = ON
|
||||
WITH_BLACKGUI = ON
|
||||
WITH_BLACKSIM = ON
|
||||
WITH_BLACKSOUND = ON
|
||||
WITH_SAMPLES = ON
|
||||
WITH_UNITTESTS = ON
|
||||
@@ -30,6 +31,10 @@ equals(WITH_BLACKGUI, ON) {
|
||||
SUBDIRS += src/blackgui
|
||||
}
|
||||
|
||||
equals(WITH_BLACKSIM, ON) {
|
||||
SUBDIRS += src/blacksim
|
||||
}
|
||||
|
||||
equals(WITH_SAMPLES, ON) {
|
||||
SUBDIRS += samples/cli_client/sample_cli_client.pro
|
||||
SUBDIRS += samples/interpolator/sample_interpolator.pro
|
||||
@@ -42,6 +47,7 @@ equals(WITH_SAMPLES, ON) {
|
||||
SUBDIRS += samples/blackcore/sample_blackcore.pro
|
||||
SUBDIRS += samples/blackmisc/sample_blackmisc.pro
|
||||
SUBDIRS += samples/voiceclient/sample_voice_client.pro
|
||||
SUBDIRS += samples/blacksim/sample_blacksim.pro
|
||||
}
|
||||
|
||||
equals(WITH_UNITTESTS, ON) {
|
||||
|
||||
28
src/blacksim/blacksim.pro
Normal file
28
src/blacksim/blacksim.pro
Normal file
@@ -0,0 +1,28 @@
|
||||
QT += network dbus xml
|
||||
|
||||
TARGET = blacksim
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib c++11
|
||||
|
||||
INCLUDEPATH += ..
|
||||
DEPENDPATH += . ..
|
||||
|
||||
LIBS += -L../../lib -lblackmisc
|
||||
|
||||
# PRECOMPILED_HEADER = stdpch.h
|
||||
precompile_header:!isEmpty(PRECOMPILED_HEADER) {
|
||||
DEFINES += USING_PCH
|
||||
}
|
||||
|
||||
DEFINES += LOG_IN_FILE
|
||||
|
||||
win32:!win32-g++*: PRE_TARGETDEPS += ../../lib/blackmisc.lib
|
||||
else: PRE_TARGETDEPS += ../../lib/libblackmisc.a
|
||||
|
||||
HEADERS += *.h
|
||||
SOURCES += *.cpp
|
||||
HEADERS += $$PWD/fscommon/*.h
|
||||
SOURCES += $$PWD/fscommon/*.cpp
|
||||
|
||||
DESTDIR = ../../lib
|
||||
|
||||
Reference in New Issue
Block a user