[catkin build] catkinConfig.cmake

今天catkin build 整个工程,编译catkin_tools_prebuild时遇到失败的情况,如下:

The catkin CMake module was not found, but it is required to build a linked
  workspace.  To resolve this, please do one of the following, and try
  building again.

 

   1. Source the setup.sh file from an existing catkin workspace:
      source SETUP_FILE

 

   2. Extend another catkin workspace's result (install or devel) space:
      catkin config --extend RESULT_SPACE

 

   3. Set `catkin_DIR` to the directory containing `catkin-config.cmake`:
      catkin config --cmake-args -Dcatkin_DIR=CATKIN_CMAKE_CONFIG_PATH

 

   4. Add the catkin source package to your workspace's source space:
      cd SOURCE_SPACE && git clone https://github.com/ros/catkin.git

 

根据提示的解决办法就是,加上下面的命令:

catkin config --extend /opt/ros/kinetic

原因分析:

出现上面的错误是由于你的编译环境没有找到ros,catkin config --extend 就是指定ros环境路径.。

我的ros环境就是/opt/ros/kinetic

[catkin build] catkinConfig.cmake_第1张图片

 

------------------------------------还有下面的错误提示

By not providing "Findcatkin.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "catkin", but
  CMake did not find one.

  Could not find a package configuration file provided by "catkin" with any
  of the following names:

    catkinConfig.cmake
    catkin-config.cmake

  Add the installation prefix of "catkin" to CMAKE_PREFIX_PATH or set
  "catkin_DIR" to a directory containing one of the above files.  If "catkin"
  provides a separate development package or SDK, be sure it has been
  installed.

你可能感兴趣的:([catkin build] catkinConfig.cmake)