We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description I get a /usr/bin/ld: cannot find -ljsoncpp_object error after the following steps in Steps To Reproduce
/usr/bin/ld: cannot find -ljsoncpp_object
It is only after modifying the following line in that the jsoncpp shared library file is found and the build succeeded:
add_dependencies(${PROJECT_NAME}_server ${catkin_EXPORTED_TARGETS} ${${PROJECT_NAME}_EXPORTED_TARGETS}) target_link_libraries(${PROJECT_NAME}_server ... jsoncpp_lib # Originally jsoncpp_object ... )
Steps To Reproduce
# git clone in my catkin_ws/src folder git clone https://github.com/RobotWebTools/webrtc_ros.git # Install jsoncpp dependency sudo apt-get install libjsoncpp-dev # Enable python scripts sourcing python2 environment to run sudo apt-get install python-is-python3 catkin build webrtc_ros
Expected Behavior Should be able to build with no problems after all dependencies have been installed
Actual Behavior I can only build after making the modifications to the webrtc_ros/CMakeLists.txt as outlined in Description
The text was updated successfully, but these errors were encountered:
Update CMakeLists.txt - libjsoncpp error
311bffc
Modified following this issue RobotWebTools#63
No branches or pull requests
Description
I get a
/usr/bin/ld: cannot find -ljsoncpp_object
error after the following steps in Steps To ReproduceIt is only after modifying the following line in that the jsoncpp shared library file is found and the build succeeded:
Steps To Reproduce
Expected Behavior
Should be able to build with no problems after all dependencies have been installed
Actual Behavior
I can only build after making the modifications to the webrtc_ros/CMakeLists.txt as outlined in Description
The text was updated successfully, but these errors were encountered: