Files
QWidgetDemo/third/third.pro
feiyangqingyun ebfd531a91 彻底改版2.0
2021-11-17 16:41:30 +08:00

24 lines
475 B
Prolog

TEMPLATE = subdirs
SUBDIRS += hotkey
SUBDIRS += shortcut
SUBDIRS += qwtdemo
#这个项目依赖QtDesigner模块,一般在arm上默认没有这个模块需要自行编译
#所以arm上如果没有QtDesigner模块不要加载下面这个子项目
lessThan(QT_MAJOR_VERSION, 5) {
SUBDIRS += designer
SUBDIRS -= hotkey
}
#Qt6有些项目还不支持
greaterThan(QT_MAJOR_VERSION, 5) {
SUBDIRS -= qwtdemo
SUBDIRS -= hotkey
SUBDIRS -= shortcut
}
win32 {
SUBDIRS += miniblink
}