Comment corriger l'erreur ROS : rosunitConfig.cmake manquant

Problème

Lors de la tentative de compilation d’un paquet ROS en utilisant colcon build, vous voyez un message d’erreur tel que

cmake_error_rosunit.txt
CMake Error at /home/uli/dev/Versatile/catkin/install/catkin/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "rosunit" with any
  of the following names:

    rosunitConfig.cmake
    rosunit-config.cmake

  Add the installation prefix of "rosunit" to CMAKE_PREFIX_PATH or set
  "rosunit_DIR" to a directory containing one of the above files.  If
  "rosunit" provides a separate development package or SDK, be sure it has
  been installed.
Call Stack (most recent call first):
  CMakeLists.txt:8 (find_package)

Solution

rosunit n’est actuellement pas disponible comme paquet apt pour ROS jazzy.

Par conséquent, clonez le dépôt, compilez-le en utilisant colcon puis exécutez source install/setup.bash avant de compiler votre paquet.

install_rosunit.sh
git clone https://github.com/ros/ros.git
cd ros/tools/rosunit
colcon build
source install/setup.bash

Après cela (dans le même shell), compilez à nouveau votre autre paquet en utilisant colcon build.


Check out similar posts by category: ROS