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
The find_package call is missing in the C, C++98 and C++11 examples.
find_package
Build any of the examples.
Adding the following after the connextdds_configure_cmake_utils() function call should fix the problem:
connextdds_configure_cmake_utils()
if(NOT RTIConnextDDS_FOUND) find_package(RTIConnextDDS "7.0.0" REQUIRED COMPONENTS core ) endif()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
System information
What is the current behavior?
The
find_package
call is missing in the C, C++98 and C++11 examples.Steps to reproduce the issue
Build any of the examples.
Expected behavior
Adding the following after the
connextdds_configure_cmake_utils()
function call should fix the problem:Suggested solutions
The text was updated successfully, but these errors were encountered: