view_ndtmatching.pro 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11 # console
  4. CONFIG -= app_bundle
  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. # 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. mainwindow.cpp \
  16. ../../include/msgtype/ndtpos.pb.cc \
  17. ../../include/msgtype/relocate.pb.cc \
  18. ../../include/msgtype/pcdmap.pb.cc \
  19. ../../common/common/math/gnss_coordinate_convert.cpp \
  20. ../../include/msgtype/gps.pb.cc \
  21. ../../include/msgtype/gpsimu.pb.cc \
  22. ../../include/msgtype/imu.pb.cc \
  23. ../../include/msgtype/objectarray.pb.cc \
  24. ../../include/msgtype/object.pb.cc
  25. QMAKE_LFLAGS += -no-pie
  26. INCLUDEPATH += /opt/ros/kinetic/include
  27. INCLUDEPATH += /usr/include/pcl-1.8
  28. INCLUDEPATH += /usr/include/pcl-1.10
  29. INCLUDEPATH += /usr/include/pcl-1.7
  30. INCLUDEPATH += /usr/include/eigen3
  31. INCLUDEPATH += /usr/include/vtk-6.3
  32. INCLUDEPATH += /usr/include/vtk-6.2
  33. INCLUDEPATH += /usr/include/vtk-7.1
  34. INCLUDEPATH += $$PWD/../view_showxodrinvtk
  35. unix:LIBS += -lpcl_common\
  36. -lpcl_features\
  37. -lpcl_filters\
  38. -lpcl_io\
  39. -lpcl_io_ply\
  40. -lpcl_kdtree\
  41. -lpcl_keypoints\
  42. -lpcl_octree\
  43. -lpcl_outofcore\
  44. -lpcl_people\
  45. -lpcl_recognition\
  46. -lpcl_registration\
  47. -lpcl_sample_consensus\
  48. -lpcl_search\
  49. -lpcl_segmentation\
  50. -lpcl_surface\
  51. -lpcl_tracking\
  52. -lpcl_visualization
  53. LIBS += -lshowxodrinvtk
  54. #INCLUDEPATH += $$PWD/../../../include/
  55. #LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livfault
  56. INCLUDEPATH += $$PWD/../../common/common/math/
  57. LIBS += -lboost_system
  58. LIBS += -lvtkCommonExecutionModel-6.3 -lvtkCommonCore-6.3 -lvtkRenderingLOD-6.3 -lvtkRenderingCore-6.3 \
  59. -lvtkFiltersSources-6.3
  60. #LIBS += -lvtkCommonExecutionModel-7.1 -lvtkCommonCore-7.1 -lvtkRenderingLOD-7.1 -lvtkRenderingCore-7.1 \
  61. # -lvtkFiltersSources-7.1
  62. FORMS += \
  63. mainwindow.ui
  64. HEADERS += \
  65. mainwindow.h \
  66. ../../include/msgtype/ndtpos.pb.h \
  67. ../../include/msgtype/relocate.pb.h \
  68. ../../include/msgtype/pcdmap.pb.h \
  69. ../../common/common/math/gnss_coordinate_convert.h \
  70. ../../include/msgtype/gps.pb.h \
  71. ../../include/msgtype/gpsimu.pb.h \
  72. ../../include/msgtype/imu.pb.h \
  73. ../../include/msgtype/objectarray.pb.h \
  74. ../../include/msgtype/object.pb.h
  75. !include(../../../include/common.pri ) {
  76. error( "Couldn't find the common.pri file!" )
  77. }
  78. !include(../../../include/ivprotobuf.pri ) {
  79. error( "Couldn't find the ivprotobuf.pri file!" )
  80. }