mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 23:45:35 +08:00
Summary: I wanted to rename xbus because its relation to //swift// is not immediately clear from the name. xswiftbus seems reasonable. Reviewers: #swift_pilot_client, kbasan Reviewed By: kbasan Subscribers: kbasan, jenkins Tags: #swift_pilot_client Differential Revision: https://dev.swift-project.org/D14
38 lines
709 B
Prolog
38 lines
709 B
Prolog
load(common_pre)
|
|
|
|
TEMPLATE = subdirs
|
|
CONFIG += ordered
|
|
|
|
SUBDIRS += blackconfig
|
|
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 += xswiftbus
|
|
}
|
|
SUBDIRS += plugins
|
|
|
|
load(common_post)
|