I am using CLion (C++ IDE) for editing a ROS package. I was able to open a package by opening the CMakeLists.txt
file. But, I get an error,
"FATAL_ERROR "find_package(catkin) failed. catkin was neither found in the workspace nor in the CMAKE_PREFIX_PATH. One reason may be that no ROS setup.sh was sourced before"
How do I solve this problem? Will I be able to make
the project in CLion (If so, how do I) after I make changes to the code or do I have to catkin_make
in a separate terminal?
source /opt/ros/<distro>/setup.bash
command) retrieves catkin environmental variables. For this reason CLion can't find them by itself. Have a look at this workaround: answers.ros.org/question/210534/… – alextoind