-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
63 lines (53 loc) · 1.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
cmake_minimum_required(VERSION 2.8.3)
project(phi_exploration)
find_package(
catkin REQUIRED COMPONENTS
roscpp
roslib
tf
phi_ocr
)
add_compile_options(-std=c++11)
find_package(OpenGL REQUIRED)
find_package(GLUT REQUIRED)
link_directories(
${catkin_LIBRARY_DIRS}
${OPENGL_LIBRARIES}
${GLUT_LIBRARIES}
)
include_directories(
include
${catkin_INCLUDE_DIRS}
${OPENGL_INCLUDE_DIRS}
${GLUT_INCLUDE_DIRS}
)
catkin_package(
# CATKIN_DEPENDS
)
add_executable(explore
src/explore/BVP.cpp
src/explore/Configuration.cpp
src/explore/Doors.cpp
src/explore/GeoAssistant.cpp
src/explore/GlutClass.cpp
src/explore/Grid.cpp
src/explore/Kernel.cpp
src/explore/main.cpp
src/explore/PioneerBase_ROS.cpp
#src/explore/PioneerBase_ARIA.cpp
src/explore/PioneerBase.cpp
src/explore/Planning.cpp
src/explore/Robot.cpp
src/explore/SemanticBVP.cpp
src/explore/SomeKernels.cpp
src/explore/thinning.cpp
src/explore/Utils.cpp
)
add_dependencies(explore phi_ocr_generate_messages_cpp)
target_link_libraries(explore
${catkin_LIBRARIES}
${OPENGL_LIBRARIES}
${GLUT_LIBRARIES}
pthread
freeimage
)