Skip to content

Commit

Permalink
Merge pull request #897 from k-okada/im_fix_install
Browse files Browse the repository at this point in the history
jsk_interactive_marker: use catkin_install_python in CMakeLists.txt
  • Loading branch information
k-okada authored Dec 11, 2024
2 parents 92d7412 + e7188b6 commit 6392dfd
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,12 @@ install(TARGETS jsk_interactive_marker
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
)

install(DIRECTORY config euslisp launch models scripts urdf
file(GLOB PYTHON_SCRIPTS scripts/*.py)
catkin_install_python(
PROGRAMS ${PYTHON_SCRIPTS}
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(DIRECTORY config euslisp launch models urdf
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
USE_SOURCE_PERMISSIONS
PATTERN ".svn" EXCLUDE
Expand Down

0 comments on commit 6392dfd

Please sign in to comment.