-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
39 lines (32 loc) · 814 Bytes
/
CMakeLists.txt
File metadata and controls
39 lines (32 loc) · 814 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
cmake_minimum_required(VERSION 3.0.2)
project(dvs_data_tools)
find_package(catkin_simple REQUIRED)
catkin_simple(ALL_DEPS_REQUIRED)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O3")
find_package(OpenCV REQUIRED)
# Make the executable
cs_add_executable(eventFrame_node
src/utils.cpp
src/events2frames.cpp
src/dvs_events2frames_node.cpp
)
# Link libraries
target_link_libraries(eventFrame_node
${catkin_LIBRARIES}
${OpenCV_LIBRARIES}
)
cs_add_executable(timeSurfaceTester_node
src/time_surface_tester.cpp
src/time_surface.cpp
)
target_link_libraries(timeSurfaceTester_node
${catkin_LIBRARIES}
${OpenCV_LIBRARIES}
)
cs_add_executable(stereoTest_node src/stereo_test.cpp)
target_link_libraries(stereoTest_node
${catkin_LIBRARIES}
${OpenCV_LIBRARIES}
)
cs_install()
cs_export()