Cmake Error when installing
Hey guys I am attemping to source and install a autonomous navigating robot project built on ros indigo and found at this link
https://github.com/sungjik/my_personal_robotic_companion
I follow the following instructions to install and source into a catkin ws.
cd ~
mkdir -p catkin_ws/src
Then check out the package into it:
cd ~/catkin_ws/src git clone https://github.com/sungjik/my_persona...
Install dependencies:
cd ~/catkin_ws rosdep install --from-paths src -i -y
(If rosdep still reports missing dependencies, check their source out into your workspace too)
And finally, build and source your workspace:
cd ~/catkin_ws catkin_make source devel/setup.bash
As soon as I run catkin_make its working for a few seconds then near the end I get the following error - +++ processing catkin package: 'my_personal_robotic_companion' -- ==> add_subdirectory(my_personal_robotic_companion/my_personal_robotic_companion) -- Using these message generators: gencpp;genlisp;genpy CMake Error at /opt/ros/indigo/share/catkin/cmake/catkin_package.cmake:296 (message): catkin_package() include dir 'include' does not exist relative to '/home/kuljot/catkin_ws/src/my_personal_robotic_companion/my_personal_robotic_companion' Call Stack (most recent call first): /opt/ros/indigo/share/catkin/cmake/catkin_package.cmake:98 (_catkin_package) my_personal_robotic_companion/my_personal_robotic_companion/CMakeLists.txt:86 (catkin_package)
-- Configuring incomplete, errors occurred! See also "/home/kuljot/catkin_ws/build/CMakeFiles/CMakeOutput.log". See also "/home/kuljot/catkin_ws/build/CMakeFiles/CMakeError.log". make: * [cmake_check_build_system] Error 1 Invoking "make cmake_check_build_system" failed kuljot@kuljot-Lenovo-IdeaPad-U530-Touch:~/catkin_ws$
The link to the cmakelists.txt fille is below
https://github.com/sungjik/my_persona...
Can someone please help me debug what is wrong. I know other people online have been able to launch this project but I have no way of contacting them to see if they had to fix any issues with this.
Thanks!!
hello, i experience the same problem and couldn't really understand the answer that ahendrix given, could you please tell me how i can create an empty include directory in the my_personal_robotic_companion package or which line should i delete in the CMakeLists ( and which CMakeList)? thx