mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
65 lines
1.4 KiB
Prolog
65 lines
1.4 KiB
Prolog
TEMPLATE = subdirs
|
|
|
|
CONFIG += ordered
|
|
|
|
WITH_BLACKMISC = ON
|
|
WITH_BLACKCORE = ON
|
|
WITH_BLACKD = ON
|
|
WITH_BLACKBOX = ON
|
|
WITH_SAMPLES = ON
|
|
|
|
#WITH_DRIVER_FSX = ON
|
|
#WITH_DRIVER_FS9 = ON
|
|
#WITH_DRIVER_XPLANE = ON
|
|
#WITH_UNITTESTS = ON
|
|
#WITH_DOXYGEN = ON
|
|
|
|
equals(WITH_BLACKMISC, ON) {
|
|
SUBDIRS += src/blackmisc
|
|
}
|
|
|
|
equals(WITH_BLACKCORE, ON) {
|
|
SUBDIRS += src/blackcore
|
|
}
|
|
|
|
equals(WITH_BLACKD, ON) {
|
|
SUBDIRS += src/blackd
|
|
}
|
|
|
|
equals(WITH_BLACKBOX, ON) {
|
|
SUBDIRS += src/blackbox
|
|
}
|
|
|
|
equals(WITH_DRIVER_FSX, ON) {
|
|
SUBDIRS += src/driver/fsx/driver_fsx.pro
|
|
}
|
|
|
|
equals(WITH_DRIVER_FS9, ON) {
|
|
SUBDIRS += src/driver/fs9/driver_fs9.pro
|
|
}
|
|
|
|
equals(WITH_DRIVER_XPLANE, ON) {
|
|
SUBDIRS += src/driver/xplane/driver_xplane.pro
|
|
}
|
|
|
|
equals(WITH_SAMPLES, ON) {
|
|
SUBDIRS += samples/com_client/sample_com_client.pro
|
|
SUBDIRS += samples/com_server/sample_com_server.pro
|
|
SUBDIRS += samples/config/sample_config.pro
|
|
SUBDIRS += samples/interpolator/sample_interpolator.pro
|
|
SUBDIRS += samples/logging/sample_logging.pro
|
|
SUBDIRS += samples/plugin/sample_plugin.pro
|
|
SUBDIRS += samples/pluginmgr/sample_pluginmgr.pro
|
|
SUBDIRS += samples/blackmiscquantities/sample_quantities_avionics.pro
|
|
SUBDIRS += samples/blackmiscvectorgeo/sample_vector_geo.pro
|
|
}
|
|
|
|
equals(WITH_UNITTESTS, ON) {
|
|
SUBDIRS += tests/blackmisc/test_blackmisc.pro
|
|
SUBDIRS += tests/blackcore/test_blackcore.pro
|
|
}
|
|
|
|
equals(WITH_DOXYGEN, ON) {
|
|
SUBDIRS += docs/doxygen.pro
|
|
}
|