detection_lidar_st.pro 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. QT -= gui
  2. QT += xml
  3. CONFIG += c++11 console
  4. CONFIG -= app_bundle
  5. QMAKE_LFLAGS += -no-pie
  6. # The following define makes your compiler emit warnings if you use
  7. # any feature of Qt which as been marked deprecated (the exact warnings
  8. # depend on your compiler). Please consult the documentation of the
  9. # deprecated API in order to know how to port your code away from it.
  10. DEFINES += QT_DEPRECATED_WARNINGS
  11. unix:INCLUDEPATH += /usr/include/eigen3
  12. unix:INCLUDEPATH += /usr/include/pcl-1.8
  13. unix:LIBS += -lboost_thread -lboost_system
  14. INCLUDEPATH += /opt/ros/kinetic/include/opencv-3.3.1-dev
  15. unix:LIBS += -lopencv_core -lopencv_highgui -lopencv_imgproc
  16. LIBS += -L$$PWD/../../../thirdpartylib/stlib/ -lclassifier1 -lrobosense -lrobosense_classification -lrobosense_common \
  17. -lrobosense_detection -lrobosense_module_manager -lrobosense_preprocessing -lrobosense_tracking -lpcl_recognition \
  18. -lpcl_common -lpcl_filters -lpcl_segmentation -lpcl_kdtree -lpcl_search
  19. INCLUDEPATH += $$PWD/rs/include
  20. DEPENDPATH += $$PWD/rs/include
  21. INCLUDEPATH += $$PWD/../../../include/
  22. # You can also make your code fail to compile if you use deprecated APIs.
  23. # In order to do so, uncomment the following line.
  24. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  25. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  26. SOURCES += main.cpp \
  27. perceptionoutput.cpp
  28. HEADERS += \
  29. perceptionoutput.h
  30. !include(../../../include/common.pri ) {
  31. error( "Couldn't find the common.pri file!" )
  32. }
  33. !include(../../../include/ivprotobuf.pri ) {
  34. error( "Couldn't find the ivprotobuf.pri file!" )
  35. }
  36. !include(../../../include/ivboost.pri ) {
  37. error( "Couldn't find the ivboost.pri file!" )
  38. }
  39. !include(../../../include/ivyaml-cpp.pri ) {
  40. error( "Couldn't find the ivyaml-cpp.pri file!" )
  41. }
  42. !include(../../../include/ivpcl.pri ) {
  43. error( "Couldn't find the ivpcl.pri file!" )
  44. }
  45. !include(../../../include/ivopencv.pri ) {
  46. error( "Couldn't find the ivopencv.pri file!" )
  47. }