You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The canros package was failing to build on my device with the README-recommended $ catkin build, which was not a command. Thus, I had to resort to $ catkin_make. However, this didn't work either. Here's what I did:
Cloned directory according to README:
$ cd ~/catkin_ws/src
$ git clone https://github.com/MonashUAS/canros
The standard $ catkin build returned:
catkin: command not found
So, I did:
$ cd ~/catkin_ws
$ catkin_make --force-cmake
However, there was a CMake error:
add_message_files() directory not found:
/home/USER/catkin_ws/src/canros/msg
So, I made a /msg directory:
$ mkdir ~/catkin_ws/src/canros/msg
Running the same catkin_make command again returned another error. This time:
add_service_files() directory not found:
/home/USER/catkin_ws/src/canros/srv
This time I made a /srv directory:
$ mkdir ~/catkin_ws/src/canros/srv
Then it built.
The text was updated successfully, but these errors were encountered:
The canros package was failing to build on my device with the README-recommended
$ catkin build
, which was not a command. Thus, I had to resort to$ catkin_make
. However, this didn't work either. Here's what I did:Cloned directory according to README:
The standard
$ catkin build
returned:So, I did:
However, there was a CMake error:
So, I made a
/msg
directory:Running the same catkin_make command again returned another error. This time:
This time I made a
/srv
directory:Then it built.
The text was updated successfully, but these errors were encountered: