Skip to content

Commit 6e50cc5

Browse files
committed
First version of OpenDRIVE class structure for Rev. 1.4H
1 parent c89634f commit 6e50cc5

File tree

4 files changed

+45088
-0
lines changed

4 files changed

+45088
-0
lines changed

CMakeLists.txt

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
cmake_minimum_required(VERSION 2.6)
2+
3+
project (xodr)
4+
5+
# STATIC library output directory
6+
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/lib)
7+
8+
add_library(libXodr STATIC src/OpenDRIVE_1.4H.cpp)
9+
10+
find_path(XSD_INCLUDE xsd)
11+
find_path(XERCES_INCLUDE xercesc)
12+
find_library(XERCES_LIB xerces-c_3.lib)
13+
14+
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include ${XSD_INCLUDE} ${XERCES_INCLUDE})
15+
16+
target_link_libraries(libXodr "${XERCES_LIB}")

0 commit comments

Comments
 (0)