1
0
mirror of https://github.com/jaredtao/TaoQuick.git synced 2025-01-31 21:22:58 +08:00
TaoQuick/TaoQuick.pro
2020-06-05 00:59:40 +08:00

17 lines
383 B
Prolog

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")
}
TEMPLATE = subdirs
SUBDIRS += \
src
OTHER_FILES += *.md \
LICENSE \
.clang-format \
.qmake.conf \
.github/workflows/*