view_pcdmap.pro 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. QT -= gui
  2. CONFIG += c++14 console
  3. CONFIG -= app_bundle
  4. QMAKE_LFLAGS += -no-pie
  5. # The following define makes your compiler emit warnings if you use
  6. # any feature of Qt which as been marked deprecated (the exact warnings
  7. # depend on your compiler). Please consult the documentation of the
  8. # deprecated API in order to know how to port your code away from it.
  9. DEFINES += QT_DEPRECATED_WARNINGS
  10. QMAKE_LFLAGS += -no-pie
  11. # You can also make your code fail to compile if you use deprecated APIs.
  12. # In order to do so, uncomment the following line.
  13. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  14. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  15. SOURCES += main.cpp
  16. INCLUDEPATH += /opt/ros/kinetic/include
  17. INCLUDEPATH += /usr/include/pcl-1.8
  18. INCLUDEPATH += /usr/include/pcl-1.10
  19. INCLUDEPATH += /usr/include/pcl-1.7
  20. INCLUDEPATH += /usr/include/eigen3
  21. INCLUDEPATH += /usr/include/vtk-6.3
  22. INCLUDEPATH += /usr/include/vtk-6.2
  23. INCLUDEPATH += /usr/include/vtk-7.1
  24. unix:LIBS += -lpcl_common\
  25. -lpcl_features\
  26. -lpcl_filters\
  27. -lpcl_io\
  28. -lpcl_io_ply\
  29. -lpcl_kdtree\
  30. -lpcl_keypoints\
  31. -lpcl_octree\
  32. -lpcl_outofcore\
  33. -lpcl_people\
  34. -lpcl_recognition\
  35. -lpcl_registration\
  36. -lpcl_sample_consensus\
  37. -lpcl_search\
  38. -lpcl_segmentation\
  39. -lpcl_surface\
  40. -lpcl_tracking\
  41. -lpcl_visualization
  42. #INCLUDEPATH += $$PWD/../../../include/
  43. #LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livfault
  44. LIBS += -lboost_system
  45. #LIBS += -lvtkCommonExecutionModel-6.3 -lvtkCommonCore-6.3 -lvtkRenderingLOD-6.3 -lvtkRenderingCore-6.3 \
  46. # -lvtkFiltersSources-6.3
  47. LIBS += -lvtkCommonExecutionModel-7.1 -lvtkCommonCore-7.1 -lvtkRenderingLOD-7.1 -lvtkRenderingCore-7.1 \
  48. -lvtkFiltersSources-7.1