Files
pilotclient/src/src.pro
Roland Winklmeier 2d8f56a598 Link CBuildConfig and CVersion into static library blackconfig
CBuildConfig including private keys etc. should not be part of a
public library API. Therefore link it into a static library, which
is not available to end users.

refs #645
2016-05-24 13:12:23 +02:00

38 lines
704 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 += xbus
}
SUBDIRS += plugins
load(common_post)