| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #-------------------------------------------------
- #
- # 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++14
- 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.12
- INCLUDEPATH += /usr/include/pcl-1.7
- INCLUDEPATH += /usr/include/vtk-6.3
- INCLUDEPATH += /usr/include/vtk-6.2
- INCLUDEPATH += /usr/include/vtk-7.1
- INCLUDEPATH += /usr/include/vtk-9.1
- DEFINES += NOTINPILOT
- DEFINES += XODRLOAD
- 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-9.1 -lvtkCommonCore-9.1 -lvtkRenderingLOD-9.1 -lvtkRenderingCore-9.1 \
- # -lvtkFiltersSources-9.1
- LIBS += -lvtkCommonExecutionModel-7.1 -lvtkCommonCore-7.1 -lvtkRenderingLOD-7.1 -lvtkRenderingCore-7.1 \
- -lvtkFiltersSources-7.1
- HEADERS += \
- mconf.h \
- showxodrinvtk.h
|