cmake_minimum_required(VERSION 2.8.3) project(talos_description) find_package(catkin REQUIRED) catkin_package( # INCLUDE_DIRS include # LIBRARIES talos_description # CATKIN_DEPENDS other_catkin_pkg # DEPENDS system_lib ) foreach(dir config gazebo meshes robots urdf srdf) install(DIRECTORY ${dir}/ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir}) endforeach(dir)