adcndtmapping.pro 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2019-05-24T14:16:33
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = adcndtmapping
  9. TEMPLATE = app
  10. # The following define makes your compiler emit warnings if you use
  11. # any feature of Qt which has been marked as deprecated (the exact warnings
  12. # depend on your compiler). Please consult the documentation of the
  13. # deprecated API in order to know how to port your code away from it.
  14. DEFINES += QT_DEPRECATED_WARNINGS
  15. QMAKE_LFLAGS += -no-pie
  16. # You can also make your code fail to compile if you use deprecated APIs.
  17. # In order to do so, uncomment the following line.
  18. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  19. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  20. SOURCES += \
  21. main.cpp \
  22. mainwindow.cpp \
  23. ndt_mapping.cpp
  24. HEADERS += \
  25. mainwindow.h \
  26. ndt_mapping.h
  27. FORMS += \
  28. mainwindow.ui
  29. INCLUDEPATH += /opt/ros/melodic/include
  30. INCLUDEPATH += /usr/include/pcl-1.8
  31. INCLUDEPATH += /usr/include/eigen3
  32. unix:LIBS += -lboost_thread -lboost_system
  33. unix:LIBS += -lpcl_common\
  34. -lpcl_features\
  35. -lpcl_filters\
  36. -lpcl_io\
  37. -lpcl_io_ply\
  38. -lpcl_kdtree\
  39. -lpcl_keypoints\
  40. -lpcl_octree\
  41. -lpcl_outofcore\
  42. -lpcl_people\
  43. -lpcl_recognition\
  44. -lpcl_registration\
  45. -lpcl_sample_consensus\
  46. -lpcl_search\
  47. -lpcl_segmentation\
  48. -lpcl_surface\
  49. -lpcl_tracking\
  50. -lpcl_visualization
  51. INCLUDEPATH += $$PWD/../../common/ndt_cpu/
  52. LIBS += -L$$PWD/../../common/ndt_cpu/ -lndt_cpu