123456789101112131415161718192021222324252627282930 |
- CONFIG -= qt
- TEMPLATE = lib
- DEFINES += CANDBC_LIBRARY
- CONFIG += c++17
- # You can make your code fail to compile if it uses deprecated APIs.
- # In order to do so, uncomment the following line.
- #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
- SOURCES += \
- candbc.cpp \
- dbc.cc \
- packer.cc \
- parser.cc
- HEADERS += \
- candbc.h \
- common_dbc.h \
- logger.h
- # Default rules for deployment.
- unix {
- target.path = /usr/lib
- }
- !isEmpty(target.path): INSTALLS += target
- CONFIG += plugin
|