Skip to content

Commit

Permalink
Merge pull request #200 from Kinovarobotics/bugfix/catkin-make-instal…
Browse files Browse the repository at this point in the history
…l-failing

fix catkin_make install that was failing
  • Loading branch information
felixmaisonneuve authored Oct 28, 2021
2 parents d53b135 + d24e5fa commit 0372336
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
1 change: 0 additions & 1 deletion kortex_examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs message_generation

## Declare a catkin package
catkin_package()
catkin_python_setup()

include_directories(include ${catkin_INCLUDE_DIRS})
include_directories(include ${PROJECT_SOURCE_DIR}/src)
Expand Down
7 changes: 0 additions & 7 deletions kortex_examples/setup.py

This file was deleted.

16 changes: 10 additions & 6 deletions kortex_gazebo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ find_package(gazebo)

catkin_package()

find_package(roslaunch)

foreach(dir config launch meshes urdf)
install(DIRECTORY ${dir}/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir})
endforeach(dir)
# Install
install(PROGRAMS
scripts/home_robot.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(DIRECTORY launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
FILES_MATCHING PATTERN "*.launch"
)

# Gazebo is compiled with Protobuf 2.6.1 and Kortex with Protobuf 3.5.1
# The 2.6.1 includes are prepended to the include_directories so the Gazebo plugins we compile here build
Expand Down

0 comments on commit 0372336

Please sign in to comment.