forked from PathPlanning/SuboptimalSIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
41 lines (35 loc) · 887 Bytes
/
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
cmake_minimum_required( VERSION 2.8 )
project( SuboptimalSIPP )
set(Boost_USE_STATIC_LIBS OFF)
find_package(Boost COMPONENTS multi_index)
include_directories( ${Boost_INCLUDE_DIRS} )
include_directories( "." )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O2 -Wall -Wextra" )
set( CMAKE_EXE_LINKER_FLAGS "-static -static-libgcc -static-libstdc++" )
set( SOURCE_FILES
main.cpp
tinyxml2.cpp
xmlLogger.cpp
mission.cpp
map.cpp
task.cpp
config.cpp
dynamicobstacles.cpp
aa_sipp.cpp
constraints.cpp )
set( HEADER_FILES
tinyxml2.h
heuristic.h
searchresult.h
gl_const.h
xmlLogger.h
mission.h
map.h
task.h
dynamicobstacles.h
config.h
lineofsight.h
aa_sipp.h
structs.h
constraints.h )
add_executable( SuboptimalSIPP ${SOURCE_FILES} ${HEADER_FILES} )