From 36add97932a2001f987e9c14d386c2cd71b4a738 Mon Sep 17 00:00:00 2001 From: Vitaly Baranov Date: Mon, 4 Mar 2019 20:36:22 +0300 Subject: [PATCH] Fix print_include_directories.cmake --- cmake/print_include_directories.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmake/print_include_directories.cmake b/cmake/print_include_directories.cmake index c4c5d00c54..05be8f909e 100644 --- a/cmake/print_include_directories.cmake +++ b/cmake/print_include_directories.cmake @@ -13,6 +13,9 @@ list(APPEND dirs ${dirs1}) get_property (dirs1 TARGET cityhash PROPERTY INCLUDE_DIRECTORIES) list(APPEND dirs ${dirs1}) +get_property (dirs1 TARGET roaring PROPERTY INCLUDE_DIRECTORIES) +list(APPEND dirs ${dirs1}) + if (USE_INTERNAL_BOOST_LIBRARY) get_property (dirs1 TARGET ${Boost_PROGRAM_OPTIONS_LIBRARY} PROPERTY INCLUDE_DIRECTORIES) list(APPEND dirs ${dirs1}) -- GitLab