-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCMakeLists.txt
48 lines (38 loc) · 2.38 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
cmake_minimum_required(VERSION 3.15)
########################################################################################################################
### Project definition ###
########################################################################################################################
project(OpenDRIVE C CXX)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -pthread")
cmake_policy(VERSION 3.15)
option(WITH_TESTS "Compile with tests." OFF)
option(OPENDRIVE_1_4 "Use version 1.4 of the OpenDrive standard." OFF)
option(OPENDRIVE_1_6 "Use version 1.6 of the OpenDrive standard." OFF)
configure_file(OpenDriveConfig.h.in OpenDriveConfig.h)
########################################################################################################################
### External Dependencies ###
########################################################################################################################
add_subdirectory(extern)
########################################################################################################################
### Standalone App ###
########################################################################################################################
add_subdirectory(app)
########################################################################################################################
### Library ###
########################################################################################################################
add_subdirectory(src)
########################################################################################################################
### Executables ###
########################################################################################################################
add_subdirectory(examples)
########################################################################################################################
### Miscellaneous ###
########################################################################################################################
add_subdirectory(misc)
########################################################################################################################
### Testing ###
########################################################################################################################
if (WITH_TESTS)
enable_testing()
add_subdirectory(test)
endif ()