Closed mpena2099 closed 3 years ago
I tried to use the Docker and it seems to be OK.
As a Ubuntu 20.04 user with ROS Noetic, I have encountered the issue of /usr/bin/ld: cannot find -ljsoncpp_object too. One thing that can be done for a successful build is to change the following in webrtc_ros/CMakeLists.txt
:
target_link_libraries(${PROJECT_NAME}_server
...
jsoncpp_object
...
)
to:
target_link_libraries(${PROJECT_NAME}_server
...
jsoncpp_lib
...
)
This ensures that the correct object is linked to.
Hi!
catkin_make_isolated not working on my Ubunu 20.04, ROS noetic.
Steps:
git clone https://github.com/GT-RAIL/async_web_server_cpp.git
git clone https://github.com/RobotWebTools/webrtc_ros
Now, catkin_make_isolated:
Any ideia?
Thanks! Mauricio