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
building it will fail saying stderr. log file only shows deprecated warnings
Solution: edit CMakeLists.txt in the root of ros1_bridge and add these:
project(ros1_bridge) set(CMAKE_CXX_STANDARD 17) add_compile_options(-Wno-deprecated-declarations) rest of the CMakeLists.txt.......
The text was updated successfully, but these errors were encountered:
No branches or pull requests
building it will fail saying stderr. log file only shows deprecated warnings
Solution:
edit CMakeLists.txt in the root of ros1_bridge
and add these:
project(ros1_bridge)
set(CMAKE_CXX_STANDARD 17)
add_compile_options(-Wno-deprecated-declarations)
rest of the CMakeLists.txt.......
The text was updated successfully, but these errors were encountered: