2020-06-05 00:59:40 +08:00
|
|
|
lessThan(QT_MAJOR_VERSION, 5) {
|
|
|
|
error("current Qt version $$QT_VERSION, this project need grather than 5.12.0")
|
|
|
|
} else: lessThan(QT_MINOR_VERSION, 12){
|
|
|
|
error("current Qt version $$QT_VERSION, this project need grather than 5.12.0")
|
|
|
|
}
|
|
|
|
|
2019-07-18 10:17:02 +08:00
|
|
|
TEMPLATE = subdirs
|
2020-06-05 00:59:40 +08:00
|
|
|
|
2019-07-18 10:17:02 +08:00
|
|
|
SUBDIRS += \
|
2019-08-03 22:36:03 +08:00
|
|
|
src
|
2019-07-18 10:17:02 +08:00
|
|
|
|
2020-06-05 00:59:40 +08:00
|
|
|
OTHER_FILES += *.md \
|
2019-12-18 12:12:40 +08:00
|
|
|
LICENSE \
|
2020-06-05 00:59:40 +08:00
|
|
|
.clang-format \
|
|
|
|
.qmake.conf \
|
2020-06-19 10:25:24 +08:00
|
|
|
.github/workflows/* \
|
|
|
|
mkspecs/features/*
|