mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
42 lines
812 B
Prolog
42 lines
812 B
Prolog
load(common_pre)
|
|
|
|
TEMPLATE = subdirs
|
|
CONFIG += ordered
|
|
|
|
SUBDIRS += blackmisc
|
|
|
|
contains(BLACK_CONFIG, BlackSound) {
|
|
SUBDIRS += blacksound
|
|
}
|
|
|
|
contains(BLACK_CONFIG, BlackInput) {
|
|
SUBDIRS += blackinput
|
|
}
|
|
|
|
contains(BLACK_CONFIG, BlackCore) {
|
|
SUBDIRS += blackcore
|
|
contains(BLACK_CONFIG, BlackGui) {
|
|
SUBDIRS += blackgui
|
|
contains(BLACK_CONFIG, SwiftGui) {
|
|
SUBDIRS += swiftguistandard
|
|
}
|
|
contains(BLACK_CONFIG, SwiftCore) {
|
|
SUBDIRS += swiftcore
|
|
}
|
|
contains(BLACK_CONFIG, SwiftData) {
|
|
SUBDIRS += swiftdata
|
|
}
|
|
contains(BLACK_CONFIG, SwiftLauncher) {
|
|
SUBDIRS += swiftlauncher
|
|
}
|
|
}
|
|
}
|
|
|
|
contains(BLACK_CONFIG, XPlane) {
|
|
SUBDIRS += xbus/xbus.pro
|
|
}
|
|
|
|
SUBDIRS += plugins
|
|
|
|
load(common_post)
|