From a866c6d936601b08eb78afdf6434df71b9f48de0 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Wed, 26 Jun 2019 20:19:31 +0200 Subject: [PATCH] CMake: Add Boost version requirement of DDS * Fix dependency summary table entry for DDS --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) 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)