ppovb5fc7/gazebo/examples/plugins/animate_joints/CMakeLists.txt

10 lines
327 B
CMake

cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
find_package(gazebo REQUIRED)
include_directories(${GAZEBO_INCLUDE_DIRS})
link_directories(${GAZEBO_LIBRARY_DIRS})
list(APPEND CMAKE_CXX_FLAGS "${GAZEBO_CXX_FLAGS}")
add_library(animate_joints SHARED animate_joints.cc)
target_link_libraries(animate_joints ${GAZEBO_LIBRARIES})