2019-09-29 03:06:55 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2016-09-19T22:25:56
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += core gui network
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
2020-05-28 06:19:20 +00:00
|
|
|
TARGET = comtool
|
|
|
|
TEMPLATE = app
|
|
|
|
DESTDIR = $$PWD/../bin
|
|
|
|
RC_FILE = other/main.rc
|
|
|
|
|
|
|
|
SOURCES += main.cpp
|
|
|
|
HEADERS += head.h
|
|
|
|
RESOURCES += other/main.qrc
|
|
|
|
CONFIG += warn_off
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
INCLUDEPATH += $$PWD/api
|
|
|
|
INCLUDEPATH += $$PWD/form
|
|
|
|
|
|
|
|
include ($$PWD/api/api.pri)
|
|
|
|
include ($$PWD/form/form.pri)
|
|
|
|
|
2021-05-15 11:10:30 +00:00
|
|
|
INCLUDEPATH += $$PWD/../core_qui
|
|
|
|
include ($$PWD/../core_qui/core_qui.pri)
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/../3rd_qextserialport
|
|
|
|
include ($$PWD/../3rd_qextserialport/3rd_qextserialport.pri)
|
|
|
|
|
|
|
|
unix:!macx {
|
2020-05-28 06:19:20 +00:00
|
|
|
contains(arma7, DEFINES) {
|
|
|
|
INCLUDEPATH += /usr/local/openssl-1.0.2m-h3-gcc-4.9.2/include
|
|
|
|
LIBS += -L/usr/local/openssl-1.0.2m-h3-gcc-4.9.2/lib -lssl -lcrypto
|
|
|
|
LIBS += -L/usr/local/h3_rootfsv -lXdmcp
|
2021-05-15 11:10:30 +00:00
|
|
|
}}
|
2020-05-28 06:19:20 +00:00
|
|
|
|