|
@@ -0,0 +1,82 @@
|
|
|
|
+#-------------------------------------------------
|
|
|
|
+#
|
|
|
|
+# Project created by QtCreator 2018-07-10T05:46:48
|
|
|
|
+#
|
|
|
|
+#-------------------------------------------------
|
|
|
|
+
|
|
|
|
+QT -= gui
|
|
|
|
+
|
|
|
|
+TARGET = showxodrinvtk
|
|
|
|
+TEMPLATE = lib
|
|
|
|
+
|
|
|
|
+DEFINES += NDT_CPU_LIBRARY
|
|
|
|
+
|
|
|
|
+VERSION = 1.0.1
|
|
|
|
+CONFIG += plugin
|
|
|
|
+CONFIG += c++11
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+SOURCES += const.cpp \
|
|
|
|
+ fresnl.cpp \
|
|
|
|
+ polevl.c \
|
|
|
|
+ showxodrinvtk.cpp
|
|
|
|
+
|
|
|
|
+!include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
|
|
|
|
+ error( "Couldn't find the OpenDrive.pri file!" )
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+!include(../../common/common/xodr/TinyXML/TinyXML.pri ) {
|
|
|
|
+ error( "Couldn't find the TinyXML.pri file!" )
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+!include(../../common/common/xodr/xodrfunc/xodrfunc.pri ) {
|
|
|
|
+ error( "Couldn't find the xodrfunc.pri file!" )
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+INCLUDEPATH += $$PWD/../../common/common/xodr
|
|
|
|
+
|
|
|
|
+INCLUDEPATH += $$PWD/../../common/common/xodr/xodrfunc
|
|
|
|
+
|
|
|
|
+QMAKE_LFLAGS += -no-pie
|
|
|
|
+
|
|
|
|
+INCLUDEPATH += /usr/include/eigen3
|
|
|
|
+INCLUDEPATH += /usr/include/pcl-1.8
|
|
|
|
+INCLUDEPATH += /usr/include/pcl-1.10
|
|
|
|
+INCLUDEPATH += /usr/include/pcl-1.7
|
|
|
|
+INCLUDEPATH += /usr/include/vtk-6.3
|
|
|
|
+INCLUDEPATH += /usr/include/vtk-6.2
|
|
|
|
+INCLUDEPATH += /usr/include/vtk-7.1
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+DEFINES += NOTINPILOT
|
|
|
|
+
|
|
|
|
+unix:LIBS += -lpcl_common\
|
|
|
|
+ -lpcl_features\
|
|
|
|
+ -lpcl_filters\
|
|
|
|
+ -lpcl_io\
|
|
|
|
+ -lpcl_io_ply\
|
|
|
|
+ -lpcl_kdtree\
|
|
|
|
+ -lpcl_keypoints\
|
|
|
|
+ -lpcl_octree\
|
|
|
|
+ -lpcl_outofcore\
|
|
|
|
+ -lpcl_people\
|
|
|
|
+ -lpcl_recognition\
|
|
|
|
+ -lpcl_registration\
|
|
|
|
+ -lpcl_sample_consensus\
|
|
|
|
+ -lpcl_search\
|
|
|
|
+ -lpcl_segmentation\
|
|
|
|
+ -lpcl_surface\
|
|
|
|
+ -lpcl_tracking\
|
|
|
|
+ -lpcl_visualization
|
|
|
|
+
|
|
|
|
+LIBS += -lboost_system
|
|
|
|
+LIBS += -lvtkCommonExecutionModel-6.3 -lvtkCommonCore-6.3 -lvtkRenderingLOD-6.3 -lvtkRenderingCore-6.3 \
|
|
|
|
+ -lvtkFiltersSources-6.3
|
|
|
|
+
|
|
|
|
+#LIBS += -lvtkCommonExecutionModel-7.1 -lvtkCommonCore-7.1 -lvtkRenderingLOD-7.1 -lvtkRenderingCore-7.1 \
|
|
|
|
+# -lvtkFiltersSources-7.1
|
|
|
|
+
|
|
|
|
+HEADERS += \
|
|
|
|
+ mconf.h \
|
|
|
|
+ showxodrinvtk.h
|