pointcloudviewer_open3d.pro 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. QT -= gui
  2. CONFIG += c++14 console
  3. CONFIG -= app_bundle
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. main.cpp
  9. # Default rules for deployment.
  10. qnx: target.path = /tmp/$${TARGET}/bin
  11. else: unix:!android: target.path = /opt/$${TARGET}/bin
  12. !isEmpty(target.path): INSTALLS += target
  13. INCLUDEPATH += /usr/include/eigen3
  14. !include(../../../include/common.pri ) {
  15. error( "Couldn't find the common.pri file!" )
  16. }
  17. !include(../../../include/ivpcl.pri ) {
  18. error( "Couldn't find the ivpcl.pri file!" )
  19. }
  20. LIBS += -lboost_system -lboost_program_options
  21. unix:LIBS += -lpcl_common\
  22. -lpcl_features\
  23. -lpcl_filters\
  24. -lpcl_io\
  25. -lpcl_io_ply\
  26. -lpcl_kdtree\
  27. -lpcl_keypoints\
  28. -lpcl_octree\
  29. -lpcl_outofcore\
  30. -lpcl_people\
  31. -lpcl_recognition\
  32. -lpcl_registration\
  33. -lpcl_sample_consensus\
  34. -lpcl_search\
  35. -lpcl_segmentation\
  36. -lpcl_surface\
  37. -lpcl_tracking\
  38. -lpcl_visualization
  39. LIBS += -lOpen3D