ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The CMakeLists.txt
(and package manifest) are missing a dependency declaration on the cmake_modules
package. In Hydro, catkin
itself provided the required config files, but in Indigo they have moved, resulting in the error you see.
Update the find_package(catkin ..)
invocation and append cmake_modules
to the end.
Also add a build_depend
on cmake_modules
to the package.xml
file.
That should make things work again.
2 | No.2 Revision |
The CMakeLists.txt
(and package manifest) are missing a dependency declaration on the cmake_modules
package. In Hydro, catkin
itself provided the required config files, but in Indigo they have moved, resulting in the error you see.see. See also indigo/Migration - cmake_modules on the ROS wiki.
Update the find_package(catkin ..)
invocation and append cmake_modules
to the end.
Also add a build_depend
on cmake_modules
to the package.xml
file.
That should make things work again.
3 | No.3 Revision |
The CMakeLists.txt
(and package manifest) are missing a dependency declaration on the cmake_modules
package. In Hydro, catkin
itself provided the required config files, but in Indigo they have moved, resulting in the error you see. See also indigo/Migration - cmake_modules on the ROS wiki.
To get things working quickly:
find_package(catkin ..)
invocation and append cmake_modules
to the end.build_depend
on cmake_modules
to the package.xml
file.That should make things work again.Edit: reported the issue, see industrial_calibration/issues/44.
4 | No.4 Revision |
The CMakeLists.txt
(and package manifest) are missing a dependency declaration on the cmake_modules
package. In Hydro, catkin
itself provided the required config files, but in Indigo they have moved, resulting in the error you see. See also indigo/Migration - cmake_modules on the ROS wiki.
To get things working quickly:
find_package(catkin ..)
invocation and append cmake_modules
to the end.build_depend
on cmake_modules
to the package.xml
file.Edit: reported the issue, see industrial_calibration/issues/44industrial_calibration/issues/31.
5 | No.5 Revision |
The CMakeLists.txt
(and package manifest) are missing a dependency declaration on the cmake_modules
package. In Hydro, catkin
itself provided the required config files, but in Indigo they have moved, resulting in the error you see. See also indigo/Migration - cmake_modules on the ROS wiki.
To get things working quickly:
find_package(catkin ..)
invocation and append cmake_modules
to the end.build_depend
on cmake_modules
to the package.xml
file.Edit: reported the issue, see industrial_calibration/issues/31.
Edit2: PR 38 is meant to fix these issues (missing cmake_modules
and the yaml-cpp
incompatibilities).