diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c7e11df..fa31e888 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,6 +78,7 @@ if(BUILD_DDS_PLUGIN) VERSION 2.4 ) set(DDS_Boost_COMPONENTS system log log_setup) + set(DDS_Boost_VERSION 1.67) endif() if(BUILD_PMIX_PLUGIN) @@ -266,6 +267,9 @@ if(PROJECT_PACKAGE_DEPENDENCIES) elseif(${dep} STREQUAL nanomsg) get_target_property(nn_include nanomsg INTERFACE_INCLUDE_DIRECTORIES) get_filename_component(prefix ${nn_include}/.. ABSOLUTE) + elseif(${dep} STREQUAL DDS) + get_target_property(dds_include DDS::dds_intercom_lib INTERFACE_INCLUDE_DIRECTORIES) + get_filename_component(prefix ${dds_include}/.. ABSOLUTE) elseif(${dep} STREQUAL Doxygen) get_target_property(doxygen_bin Doxygen::doxygen INTERFACE_LOCATION) get_filename_component(prefix ${doxygen_bin} DIRECTORY)