forked from swift-project/pilotclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswift.pro
More file actions
38 lines (30 loc) · 695 Bytes
/
swift.pro
File metadata and controls
38 lines (30 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
}
llvm|gcc: system($$QMAKE_CXX --version)
else:msvc: system($$QMAKE_CXX)
include(install.pri)
include(src/xswiftbus/version.pri)
load(common_post)