Skip to content

Commit

Permalink
Update so binaries are installed in lib so rosrun will find them
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Dec 3, 2024
1 parent 6ae2234 commit 0aaf881
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dependencies.rosinstall
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
- git:
local-name: ros_industrial_cmake_boilerplate
uri: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.2
version: 0.6.3
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 0.27.0
version: 0.27.1
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt.git
Expand Down
4 changes: 2 additions & 2 deletions dependencies_with_ext.rosinstall
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
- git:
local-name: ros_industrial_cmake_boilerplate
uri: https://github.com/ros-industrial/ros_industrial_cmake_boilerplate.git
version: 0.6.2
version: 0.6.3
- git:
local-name: tesseract_ext
uri: https://github.com/tesseract-robotics/tesseract_ext.git
version: master
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 0.27.0
version: 0.27.1
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt_ros.git
Expand Down
4 changes: 4 additions & 0 deletions tesseract_monitoring/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ catkin_package(
SKIP_PKG_CONFIG_GENERATION
)

# Override the default installation directory for executables
set(CMAKE_INSTALL_BINDIR ${CATKIN_PACKAGE_BIN_DESTINATION})
set(CMAKE_INSTALL_LIBDIR ${CATKIN_PACKAGE_LIB_DESTINATION})

configure_package(
NAMESPACE tesseract
TARGETS
Expand Down
4 changes: 4 additions & 0 deletions tesseract_planning_server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ catkin_package(
SKIP_PKG_CONFIG_GENERATION
)

# Override the default installation directory for executables
set(CMAKE_INSTALL_BINDIR ${CATKIN_PACKAGE_BIN_DESTINATION})
set(CMAKE_INSTALL_LIBDIR ${CATKIN_PACKAGE_LIB_DESTINATION})

# Configure Package
configure_package(
NAMESPACE tesseract
Expand Down
4 changes: 4 additions & 0 deletions tesseract_qt_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ catkin_package(
SKIP_PKG_CONFIG_GENERATION
)

# Override the default installation directory for executables
set(CMAKE_INSTALL_BINDIR ${CATKIN_PACKAGE_BIN_DESTINATION})
set(CMAKE_INSTALL_LIBDIR ${CATKIN_PACKAGE_LIB_DESTINATION})

# Configure Package
configure_package(
NAMESPACE tesseract
Expand Down

0 comments on commit 0aaf881

Please sign in to comment.