-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add missing dirs into install command #1583
add missing dirs into install command #1583
Conversation
jsk_tilt_laser/CMakeLists.txt
Outdated
@@ -50,3 +50,11 @@ if(NOT APPLE) | |||
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | |||
) | |||
endif(NOT APPLE) | |||
|
|||
install(DIRECTORY scripts | |||
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
may be you can put this directory under CATKIN_PACKAGE_SHARE_DESTINATION
move scripts dir into SHARE
@@ -50,3 +50,7 @@ if(NOT APPLE) | |||
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | |||
) | |||
endif(NOT APPLE) | |||
|
|||
install(DIRECTORY launch config cfg scripts | |||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add USE_SOURCE_PERMISSIONS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed as you said now.
No description provided.