candbc.pro 562 B

123456789101112131415161718192021222324252627282930
  1. CONFIG -= qt
  2. TEMPLATE = lib
  3. DEFINES += CANDBC_LIBRARY
  4. CONFIG += c++17
  5. # You can make your code fail to compile if it uses deprecated APIs.
  6. # In order to do so, uncomment the following line.
  7. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  8. SOURCES += \
  9. candbc.cpp \
  10. dbc.cc \
  11. packer.cc \
  12. parser.cc
  13. HEADERS += \
  14. candbc.h \
  15. common_dbc.h \
  16. logger.h
  17. # Default rules for deployment.
  18. unix {
  19. target.path = /usr/lib
  20. }
  21. !isEmpty(target.path): INSTALLS += target
  22. CONFIG += plugin