2017-03-29 18:18:49 +08:00
|
|
|
ADS_OUT_ROOT = $${OUT_PWD}/..
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2017-03-13 04:41:50 +08:00
|
|
|
TARGET = AdvancedDockingSystemDemo
|
2017-03-29 18:18:49 +08:00
|
|
|
DESTDIR = $${ADS_OUT_ROOT}/lib
|
2020-01-11 19:05:44 +08:00
|
|
|
QT += core gui widgets
|
|
|
|
|
2021-01-03 02:48:34 +08:00
|
|
|
include(../ads.pri)
|
|
|
|
|
2021-01-03 01:06:45 +08:00
|
|
|
lessThan(QT_MAJOR_VERSION, 6) {
|
|
|
|
win32 {
|
|
|
|
QT += axcontainer
|
|
|
|
}
|
2020-01-11 19:05:44 +08:00
|
|
|
}
|
|
|
|
|
2019-01-26 00:28:36 +08:00
|
|
|
CONFIG += c++14
|
2019-01-18 16:33:11 +08:00
|
|
|
CONFIG += debug_and_release
|
2019-01-17 00:49:59 +08:00
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2019-01-17 00:49:59 +08:00
|
|
|
adsBuildStatic {
|
|
|
|
DEFINES += ADS_STATIC
|
|
|
|
}
|
2017-02-27 01:13:56 +08:00
|
|
|
|
|
|
|
SOURCES += \
|
2017-03-13 04:41:50 +08:00
|
|
|
main.cpp \
|
2020-04-14 22:07:00 +08:00
|
|
|
MainWindow.cpp \
|
|
|
|
StatusDialog.cpp
|
2017-02-27 01:13:56 +08:00
|
|
|
|
|
|
|
HEADERS += \
|
2020-04-14 22:07:00 +08:00
|
|
|
MainWindow.h \
|
|
|
|
StatusDialog.h
|
2017-02-27 01:13:56 +08:00
|
|
|
|
|
|
|
FORMS += \
|
2020-04-14 22:07:00 +08:00
|
|
|
mainwindow.ui \
|
|
|
|
StatusDialog.ui
|
2019-12-10 21:44:44 +08:00
|
|
|
|
|
|
|
RESOURCES += demo.qrc
|
2019-01-17 00:49:59 +08:00
|
|
|
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2017-03-29 18:18:49 +08:00
|
|
|
LIBS += -L$${ADS_OUT_ROOT}/lib
|
2017-02-27 01:13:56 +08:00
|
|
|
|
2020-10-31 04:49:28 +08:00
|
|
|
|
2017-03-13 04:41:50 +08:00
|
|
|
INCLUDEPATH += ../src
|
|
|
|
DEPENDPATH += ../src
|