2022-01-02 00:31:59 +08:00
|
|
|
QT += core gui
|
2022-01-29 20:20:15 +08:00
|
|
|
QT += network
|
2022-02-03 22:14:14 +08:00
|
|
|
QT += serialport
|
2022-01-02 00:31:59 +08:00
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
CONFIG += c++11
|
|
|
|
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
|
|
# any Qt feature that has been marked deprecated (the exact warnings
|
|
|
|
# depend on your compiler). Please consult the documentation of the
|
|
|
|
# deprecated API in order to know how to port your code away from it.
|
2022-01-29 20:20:15 +08:00
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS \
|
2022-08-08 10:30:49 +08:00
|
|
|
APP_VERSION=\\\"1.2.2\\\"
|
2022-01-02 00:31:59 +08:00
|
|
|
|
|
|
|
# You can also make your code fail to compile if it uses deprecated APIs.
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
SOURCES += \
|
2022-01-29 20:20:15 +08:00
|
|
|
aboutwindow.cpp \
|
2022-01-30 18:32:39 +08:00
|
|
|
gdbprocess.cpp \
|
2022-01-02 00:31:59 +08:00
|
|
|
graphwindow.cpp \
|
2022-01-29 20:20:15 +08:00
|
|
|
helpwindow.cpp \
|
|
|
|
listwindow.cpp \
|
2022-02-18 22:36:23 +08:00
|
|
|
logwindow.cpp \
|
2022-01-02 00:31:59 +08:00
|
|
|
main.cpp \
|
2022-01-31 00:06:57 +08:00
|
|
|
mainwindow.cpp \
|
2022-02-03 22:14:14 +08:00
|
|
|
openocd.cpp \
|
|
|
|
serialocd.cpp
|
2022-01-02 00:31:59 +08:00
|
|
|
|
|
|
|
HEADERS += \
|
2022-01-29 20:20:15 +08:00
|
|
|
aboutwindow.h \
|
2022-01-30 18:32:39 +08:00
|
|
|
gdbprocess.h \
|
2022-01-02 00:31:59 +08:00
|
|
|
graphwindow.h \
|
2022-01-29 20:20:15 +08:00
|
|
|
helpwindow.h \
|
|
|
|
listwindow.h \
|
2022-02-18 22:36:23 +08:00
|
|
|
logwindow.h \
|
2022-01-02 00:31:59 +08:00
|
|
|
mainwindow.h \
|
2022-01-31 00:06:57 +08:00
|
|
|
openocd.h \
|
2022-02-03 22:14:14 +08:00
|
|
|
serialocd.h \
|
2022-01-02 00:31:59 +08:00
|
|
|
vartype.h
|
|
|
|
|
|
|
|
FORMS += \
|
2022-01-29 20:20:15 +08:00
|
|
|
aboutwindow.ui \
|
2022-01-02 00:31:59 +08:00
|
|
|
graphwindow.ui \
|
2022-01-29 20:20:15 +08:00
|
|
|
helpwindow.ui \
|
|
|
|
listwindow.ui \
|
2022-02-18 22:36:23 +08:00
|
|
|
logwindow.ui \
|
2022-01-02 00:31:59 +08:00
|
|
|
mainwindow.ui
|
|
|
|
|
|
|
|
RC_ICONS = icon.ico
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|
2022-01-25 16:13:54 +08:00
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
res.qrc
|