2018-05-28 00:21:30 +08:00
|
|
|
|
##-----------------------------------------------------------------
|
|
|
|
|
##LibQQt样例工程入口
|
|
|
|
|
##不能随便编译,初始设置要求比较严格,请按照规程设置完整。
|
|
|
|
|
##Example要编译,必须先编译完LibQQt
|
|
|
|
|
##本Library基于Multi-link技术,Example也是
|
|
|
|
|
##Example工程也就是App工程和Library工程不能放在一起编译,否则会引发 first time bug (add_deploy_library_on_mac).
|
|
|
|
|
##Library工程组和App工程组分开编译,不会引发这个bug。
|
|
|
|
|
##-----------------------------------------------------------------
|
|
|
|
|
TEMPLATE = subdirs
|
2018-10-12 23:08:31 +08:00
|
|
|
|
#有助于判定编译到哪个APP。
|
|
|
|
|
CONFIG += ordered
|
2018-05-28 00:21:30 +08:00
|
|
|
|
|
|
|
|
|
SUBDIRS =
|
|
|
|
|
|
|
|
|
|
##-----------------------------------------------------------------
|
|
|
|
|
##Q1级别 V1 第一版、第一代
|
|
|
|
|
##-----------------------------------------------------------------
|
|
|
|
|
#古老的链接LibQQt的方式废弃。
|
|
|
|
|
#App管理Application句柄的方式废弃。
|
|
|
|
|
#SUBDIRS += examples/qqtframe
|
|
|
|
|
|
|
|
|
|
#SUBDIRS += examples/animationframe
|
2018-05-29 09:15:15 +08:00
|
|
|
|
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#Q3级别 V2 第二版、第二代
|
|
|
|
|
#QQt installed to Qt library or
|
|
|
|
|
#QQt installed to sdk or
|
|
|
|
|
#QQt is build
|
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#第二种引用LibQQt的方式
|
2018-06-05 22:15:08 +08:00
|
|
|
|
#方法:include(.../LibQQt/multi-link/multi-link/add_base_manager.pri)
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#QQt提供QQtApplication帮助App管理Application句柄。
|
|
|
|
|
#SUBDIRS += examples/qqtframe2
|
|
|
|
|
#必看
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += examples/exquisite
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#SUBDIRS += examples/tabwidgetexamples
|
|
|
|
|
|
|
|
|
|
#SUBDIRS += examples/qqtchartexample
|
|
|
|
|
#
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += examples/console_app
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#need webaccessmanager - WebSupport
|
|
|
|
|
#need QSsl
|
|
|
|
|
#need GumoQuery
|
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#greaterThan(QT_MAJOR_VERSION , 4):SUBDIRS += demo/VegeTablesPrice
|
|
|
|
|
#SUBDIRS += demo/LearnCookieTest
|
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#some test project
|
|
|
|
|
#SUBDIRS += test/gumbo_query_test
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/customqvariant
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#SUBDIRS += test/framelesshelperwidget
|
|
|
|
|
#SUBDIRS += test/treeviewtest
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/bytearraytest
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#!contains(QSYS_PRIVATE, iOS|iOSSimulator){
|
|
|
|
|
# SUBDIRS += test/cmdwidget
|
|
|
|
|
#}
|
|
|
|
|
#SUBDIRS += test/coretest
|
|
|
|
|
#
|
|
|
|
|
#need QtSoap - WebSupport
|
|
|
|
|
##SUBDIRS += test/easter
|
|
|
|
|
#SUBDIRS += demo/soapQQtOnline
|
|
|
|
|
#
|
|
|
|
|
##need bluetooth library
|
|
|
|
|
#greaterThan(QT_MAJOR_VERSION , 4):SUBDIRS += test/qqtbtfileserver
|
|
|
|
|
|
|
|
|
|
#0000
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/svgtest
|
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/qqtdicttest
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#必开
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/qqtdicttest2
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#必开
|
2018-06-13 12:14:37 +08:00
|
|
|
|
#SUBDIRS += test/giftest
|
2018-05-28 00:21:30 +08:00
|
|
|
|
|
2019-02-28 16:29:23 +08:00
|
|
|
|
#必开 这个例子是关于LibQQt MultiMedia的最好展示
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
greaterThan(QT_VERSION, 4.6.0):SUBDIRS += test/voicetest
|
|
|
|
|
#
|
|
|
|
|
mac:lessThan(QT_MAJOR_VERSION , 5):SUBDIRS -= test/voicetest
|
2019-06-08 22:22:57 +08:00
|
|
|
|
SUBDIRS += test/videotest
|
|
|
|
|
SUBDIRS += test/videotest2
|
|
|
|
|
SUBDIRS += test/videotest3
|
2018-05-28 00:21:30 +08:00
|
|
|
|
|
|
|
|
|
#这边是个组合项,客户端和服务器一起的。必看
|
|
|
|
|
#SUBDIRS += examples/qqtclientexample
|
|
|
|
|
#SUBDIRS += examples/qqtserverexample
|
|
|
|
|
#通信协议的复杂的例子
|
|
|
|
|
#SUBDIRS += examples/qqtnetworkexample
|
|
|
|
|
|
|
|
|
|
#udp 嵌入式linux,Qt编译了udp支持,默认是支持的
|
|
|
|
|
#SUBDIRS += examples/qqtudpexample
|
|
|
|
|
#lessThan(QT_VERSION , 5.8.0):SUBDIRS -= examples/qqtudpexample
|
|
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
|
#Q5级别 V2 第三版、第二代
|
|
|
|
|
#和QQt脱离开的Multi-link技术
|
|
|
|
|
#默认链接QQt,但是可以容易的脱开。
|
|
|
|
|
#-----------------------------------------------------------------
|
2018-05-29 09:15:15 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/openglwidgettest
|
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/osdtest
|
2018-05-28 00:21:30 +08:00
|
|
|
|
#SUBDIRS += demo/SysInfoNotify
|
|
|
|
|
|
2018-10-06 06:49:05 +08:00
|
|
|
|
#
|
|
|
|
|
SUBDIRS += test/QQtWidgetClickHelperTest
|
|
|
|
|
|
|
|
|
|
SUBDIRS += demo/QQtRoseMonitor
|