driver_lidar_bk_16z.pro 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. QT = core
  2. CONFIG += c++17 cmdline
  3. # You can make your code fail to compile if it uses deprecated APIs.
  4. # In order to do so, uncomment the following line.
  5. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  6. SOURCES += \
  7. common/ioapi.cpp \
  8. common/ssFrameLib.cpp \
  9. lidar_16z.cpp \
  10. lidar_bkdriver.cpp \
  11. main.cpp
  12. # Default rules for deployment.
  13. qnx: target.path = /tmp/$${TARGET}/bin
  14. else: unix:!android: target.path = /opt/$${TARGET}/bin
  15. !isEmpty(target.path): INSTALLS += target
  16. HEADERS += \
  17. ICD_LiDAR_API.h \
  18. common/ioapi.h \
  19. common/ssFrameLib.h \
  20. common/utility.h \
  21. lidar_16z.h \
  22. lidar_bkdriver.h
  23. INCLUDEPATH += $$PWD/common
  24. INCLUDEPATH += /usr/include/eigen3
  25. !include(../../../include/common.pri ) {
  26. error( "Couldn't find the common.pri file!" )
  27. }
  28. !include(../../../include/ivpcl.pri ) {
  29. error( "Couldn't find the ivpcl.pri file!" )
  30. }
  31. !include(../../../include/ivyaml-cpp.pri ) {
  32. error( "Couldn't find the ivyaml-cpp.pri file!" )
  33. }