mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 23:45:35 +08:00
33 lines
606 B
Prolog
33 lines
606 B
Prolog
load(common_pre)
|
|
|
|
TEMPLATE = subdirs
|
|
CONFIG += ordered
|
|
|
|
SUBDIRS += emulated
|
|
SUBDIRS += emulatedconfig
|
|
|
|
contains(BLACK_CONFIG,FSX|FS9|P3D) {
|
|
SUBDIRS += fsuipc32
|
|
SUBDIRS += fsuipc64
|
|
SUBDIRS += fscommon
|
|
}
|
|
contains(BLACK_CONFIG,FSX|P3D) {
|
|
SUBDIRS += fsxcommon
|
|
}
|
|
contains(BLACK_CONFIG,P3D) {
|
|
SUBDIRS += p3d
|
|
SUBDIRS += p3dconfig
|
|
}
|
|
contains(BLACK_CONFIG,FSX) {
|
|
SUBDIRS += fsx
|
|
SUBDIRS += fsxconfig
|
|
}
|
|
contains(BLACK_CONFIG,FS9):contains(BLACK_CONFIG,FSUIPC) {
|
|
SUBDIRS += fs9
|
|
}
|
|
contains(BLACK_CONFIG,XPlane) {
|
|
SUBDIRS += xplane
|
|
SUBDIRS += xplaneconfig
|
|
}
|
|
load(common_post)
|