Files
pilotclient/swift.pro
Mat Sutcliffe 836eb107a3 Smart xswiftbus compatibility check based on git commit SHA-1
This is more tolerant that the simple check based on version numbers.
Different versions can be compatible if they have the same SHA-1 when
considering only those files that can influence xswiftbus.
2020-01-07 19:57:25 +00:00

34 lines
593 B
Prolog

load(common_pre)
TEMPLATE = subdirs
CONFIG += ordered
OTHER_FILES += mkspecs/features/*.prf
OTHER_FILES += mkspecs/features/*.pri
OTHER_FILES += *.supp
OTHER_FILES += .astylerc
OTHER_FILES += $$SWIFT_CONFIG_JSON
CheckMandatoryDependency(gl)
CheckMandatoryDependency(glu)
CheckMandatoryDependency(libpng)
CheckMandatoryDependency(zlib)
swiftConfig(doxygen) {
SUBDIRS += docs
}
SUBDIRS += resources
SUBDIRS += src
swiftConfig(samples) {
SUBDIRS += samples
}
swiftConfig(unitTests) {
SUBDIRS += tests
}
include(install.pri)
include(src/xswiftbus/version.pri)
load(common_post)