123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2023-01-12T09:44:18
- #
- #-------------------------------------------------
- lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")
- QT += core gui
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- QT += charts
- QT += network
- QT += xml
- QT += charts
- QT += serialport
- CONFIG += ordered warn_on qt debug_and_release
- CONFIG += c++11
- TARGET = adc_cantool_driverEnable
- TEMPLATE = app
- QMAKE_LFLAGS += -no-pie
- CONFIG += warn_on
- CONFIG += link_pkgconfig
- DEFINES += CHECK_FOR_CHERRY
- #DESTDIR = ./bin
- #MOC_DIR = ./build/moc
- #RCC_DIR = ./build/rcc
- #UI_DIR = ./build/ui
- unix:OBJECTS_DIR = ./build/o/unix
- win32:OBJECTS_DIR = ./build/o/win32
- macx:OBJECTS_DIR = ./build/o/mac
- # The following define makes your compiler emit warnings if you use
- # any feature of Qt which has been marked as 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.
- DEFINES += QT_DEPRECATED_WARNINGS
- # You can also make your code fail to compile if you use 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 += \
- main.cpp \
- mainwindow.cpp
- HEADERS += \
- mainwindow.h
- FORMS += \
- mainwindow.ui
- include($$PWD/core/core.pri)
- include($$PWD/driver/driver.pri)
- include($$PWD/parser/dbc/dbc.pri)
- include($$PWD/window/TraceWindow/TraceWindow.pri)
- include($$PWD/window/SetupDialog/SetupDialog.pri)
- include($$PWD/window/LogWindow/LogWindow.pri)
- include($$PWD/window/GraphWindow/GraphWindow.pri)
- include($$PWD/window/CanStatusWindow/CanStatusWindow.pri)
- include($$PWD/window/RawTxWindow/RawTxWindow.pri)
- include($$PWD/window/ChassisAnalysisWindow/ChassisAnalysisWindow.pri)
- #include($$PWD/window/ShenLanChassisAnalysisWindow/ShenLanChassisAnalysisWindow.pri)
- unix:PKGCONFIG += libnl-3.0
- unix:PKGCONFIG += libnl-route-3.0
- unix:include($$PWD/driver/SocketCanDriver/SocketCanDriver.pri)
- include($$PWD/driver/CANBlastDriver/CANBlastDriver.pri)
- include($$PWD/driver/SLCANDriver/SLCANDriver.pri)
- win32:include($$PWD/driver/CandleApiDriver/CandleApiDriver.pri)
- RESOURCES += \
- cantool.qrc
|