Files
teleoperation/CMakeLists.txt
Pavel Lutskov fe09cce493 Started implementing main controller
Also sort of implemented the navigation
Also tidy up the CMakeLists a little
2019-01-17 16:15:05 +01:00

25 lines
500 B
CMake

cmake_minimum_required(VERSION 2.8.3)
project(teleoperation)
find_package(catkin REQUIRED COMPONENTS
cv_bridge
image_transport
roscpp
sensor_msgs
std_msgs
tf
aruco
)
catkin_package(
)
include_directories(
${catkin_INCLUDE_DIRS}
)
add_executable(aruco_detector src/aruco_detector.cpp)
add_executable(aruco_effector src/aruco_effector.cpp)
target_link_libraries(aruco_detector ${catkin_LIBRARIES} ${aruco_LIB})
target_link_libraries(aruco_effector ${catkin_LIBRARIES} ${aruco_LIB})