Remove ROS artifact from CMake install
I am using CPack to create .deb binaries. The relevant part of the CMakeLists.txt looks like this:
INSTALL(TARGETS ${PROJECT_NAME}_node DESTINATION bin)
INSTALL(FILES doc/${PROJECT_NAME}.yaml DESTINATION share)
INSTALL(FILES doc/${PROJECT_NAME}.service DESTINATION lib/systemd/system)
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Maintainer")
SET(CPACK_GENERATOR "DEB")
The .deb file gets build fine, the only problem i have is that ROS is adding som files:
- .catkin
- local/.rosinstall
- local/env.sh
- local/setup.{sh,bash,zsh}
- local/_setup_util.py
Any idea on how I can stop those files from appearing?