mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
36 lines
622 B
Prolog
36 lines
622 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
|
|
|
|
!qtc_run {
|
|
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)
|