彻底改版2.0

This commit is contained in:
feiyangqingyun
2021-11-17 16:41:30 +08:00
parent a7f4347959
commit ebfd531a91
2622 changed files with 8915 additions and 7263 deletions

23
third/third.pro Normal file
View File

@@ -0,0 +1,23 @@
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
}