forked from RuiYang-1010/octo_orf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
41 lines (35 loc) · 828 Bytes
/
CMakeLists.txt
File metadata and controls
41 lines (35 loc) · 828 Bytes
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.3)
project(online_forests_ros)
find_package(catkin REQUIRED COMPONENTS
roscpp
std_msgs
)
include_directories(
include
${catkin_INCLUDE_DIRS}
)
catkin_package(
INCLUDE_DIRS include
)
add_executable(online_forests_ros
src/online_forests/classifier.cpp
src/online_forests/hyperparameters.cpp
src/online_forests/onlinenode.cpp
src/online_forests/onlinetree.cpp
src/online_forests/utilities.cpp
src/online_forests/data.cpp
# src/online_forests/Online-Forest.cpp
src/online_forests/onlinerf.cpp
src/online_forests/randomtest.cpp
src/online_forests_ros.cpp
)
target_link_libraries(online_forests_ros
${catkin_LIBRARIES}
config++
blas
)
if(catkin_EXPORTED_TARGETS)
add_dependencies(online_forests_ros
${catkin_EXPORTED_TARGETS}
)
endif()