mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
FSX SimConnect code is build and linked only if enabled by the build configuration. refs #145
26 lines
310 B
Plaintext
26 lines
310 B
Plaintext
include (externals.pri)
|
|
|
|
LIBS *= -L../../lib
|
|
|
|
blackgui {
|
|
LIBS += -lblackgui
|
|
}
|
|
|
|
blackcore {
|
|
LIBS += -lblackcore -lvatlib
|
|
|
|
win32 {
|
|
contains(BLACK_CONFIG, FSX) {
|
|
LIBS += -lSimConnect
|
|
}
|
|
}
|
|
}
|
|
|
|
blacksound {
|
|
LIBS += -lblacksound
|
|
}
|
|
|
|
blackmisc {
|
|
LIBS += -lblackmisc
|
|
}
|