You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
569 B

cmake_minimum_required(VERSION 2.8.3)
project(genmsg)
find_package(catkin REQUIRED)
catkin_package(CFG_EXTRAS genmsg-extras.cmake)
install(
FILES
cmake/pkg-genmsg.cmake.em
cmake/pkg-genmsg.context.in
cmake/pkg-msg-extras.cmake.in
cmake/pkg-msg-paths.cmake.develspace.in
cmake/pkg-msg-paths.cmake.installspace.in
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/cmake)
catkin_python_setup()
install(
PROGRAMS scripts/genmsg_check_deps.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
if(CATKIN_ENABLE_TESTING)
catkin_add_nosetests(test)
endif()