fusion_pointcloud_shenlan.pro 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. QT -= gui
  2. CONFIG += c++14 #console
  3. CONFIG -= app_bundle
  4. # The following define makes your compiler emit warnings if you use
  5. # any feature of Qt which as been marked deprecated (the exact warnings
  6. # depend on your compiler). Please consult the documentation of the
  7. # deprecated API in order to know how to port your code away from it.
  8. DEFINES += QT_DEPRECATED_WARNINGS
  9. QMAKE_LFLAGS += -no-pie
  10. # You can also make your code fail to compile if you use deprecated APIs.
  11. # In order to do so, uncomment the following line.
  12. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  13. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  14. SOURCES += main.cpp \
  15. lidarmerge.cpp
  16. INCLUDEPATH += /usr/include/pcl-1.7
  17. INCLUDEPATH += /usr/include/pcl-1.8
  18. INCLUDEPATH += /usr/include/eigen3
  19. #QMAKE_CXXFLAGS += -g
  20. #QMAKE_CXXFLAGS += -g
  21. #LIBS += /usr/lib/aarch64-linux-gnu/libpcl_*.so
  22. win32: LIBS += -LC:/File/PCL_1.8/PCL_1.8.1/lib -lpcl_common_debug\
  23. -lpcl_features_debug\
  24. -lpcl_filters_debug\
  25. -lpcl_io_debug\
  26. -lpcl_io_ply_debug\
  27. -lpcl_kdtree_debug\
  28. -lpcl_keypoints_debug\
  29. -lpcl_octree_debug\
  30. -lpcl_outofcore_debug\
  31. -lpcl_people_debug\
  32. -lpcl_recognition_debug\
  33. -lpcl_registration_debug\
  34. -lpcl_sample_consensus_debug\
  35. -lpcl_search_debug\
  36. -lpcl_segmentation_debug\
  37. -lpcl_surface_debug\
  38. -lpcl_tracking_debug\
  39. -lpcl_visualization_debug
  40. unix:LIBS += -lpcl_common\
  41. -lpcl_features\
  42. -lpcl_filters\
  43. -lpcl_io\
  44. -lpcl_io_ply\
  45. -lpcl_kdtree\
  46. -lpcl_keypoints\
  47. -lpcl_octree\
  48. -lpcl_outofcore\
  49. -lpcl_people\
  50. -lpcl_recognition\
  51. -lpcl_registration\
  52. -lpcl_sample_consensus\
  53. -lpcl_search\
  54. -lpcl_segmentation\
  55. -lpcl_surface\
  56. -lpcl_tracking\
  57. -lpcl_visualization
  58. HEADERS += \
  59. lidarmerge.h
  60. unix:LIBS += -lboost_thread -lboost_system
  61. !include(../../../include/common.pri ) {
  62. error( "Couldn't find the common.pri file!" )
  63. }
  64. !include(../../../include/ivprotobuf.pri ) {
  65. error( "Couldn't find the ivprotobuf.pri file!" )
  66. }
  67. !include(../../../include/ivboost.pri ) {
  68. error( "Couldn't find the ivboost.pri file!" )
  69. }
  70. !include(../../../include/ivyaml-cpp.pri ) {
  71. error( "Couldn't find the ivyaml-cpp.pri file!" )
  72. }
  73. !include(../../../include/ivpcl.pri ) {
  74. error( "Couldn't find the ivpcl.pri file!" )
  75. }
  76. INCLUDEPATH += /usr/include/eigen3