-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
49 lines (37 loc) · 1.91 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
cmake_minimum_required(VERSION 2.8.3)
project(dvrk-tissueRetraction)
find_package(Curses REQUIRED)
find_package(
catkin REQUIRED COMPONENTS
roscpp
cv_bridge
image_geometry
image_transport
)
#include(/opt/opencv-3.4.3/build/OpenCVConfig.cmake)
#set(OpenCV_INCLUDE_DIR ${OPENCV_INCLUDE_DIR})
include_directories(
${catkin_INCLUDE_DIRS}
${OpenCV_INCLUDE_DIRS}
${CURSES_INCLUDE_DIRS}
)
#add_executable(video_stream_dummy src/ros/videoStreamDummy.cpp)
#add_executable(stereo_img_reader src/ros/stereoImagesReader.cpp)
#add_executable(kinematic_data_reader src/ros/kinematicDataReader.cpp)
#add_executable(test_key src/ros/testKey.cpp)
#add_executable(joint_state_dummy src/ros/jointStateDummy.cpp src/ros/flapBlobDetection.cpp src/ros/datasetConverter.cpp)
#add_executable(video_trial_recorder src/ros/videoTrialRecorder.cpp)
#add_executable(tissue_blob_detection src/ros/flapBlobDetection.cpp)
add_executable(dataset_converter src/ros/datasetConverter.cpp)
#add_executable(depth_map_eval src/ros/depthMapEval.cpp)
#target_link_libraries(tissue_blob_detection ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(video_stream_dummy ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(stereo_img_reader ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(kinematic_data_reader ${catkin_LIBRARIES} ${CURSES_LIBRARIES})
#target_link_libraries(test_key ${catkin_LIBRARIES} ${CURSES_LIBRARIES})
#target_link_libraries(joint_state_dummy ${catkin_LIBRARIES} ${CURSES_LIBRARIES})
#target_link_libraries(video_trial_recorder ${OpenCV_LIBRARIES} ${catkin_LIBRARIES} ${CURSES_LIBRARIES})
target_link_libraries(dataset_converter ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(depth_map_eval ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(video2bag.py ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})
#target_link_libraries(stereovideo2bag.py ${OpenCV_LIBRARIES} ${catkin_LIBRARIES})