Skip to content
Snippets Groups Projects
Commit 5762d835 authored by Lars Bilke's avatar Lars Bilke
Browse files

[CMake] Fix check headers introduced in #2610.

Boost::boost is an interface library and should be ignored.
parent 78071cd4
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,9 @@ function(_check_header_compilation TARGET) ...@@ -30,7 +30,9 @@ function(_check_header_compilation TARGET)
get_target_property(INCLUDE_DIRS ${TARGET} INCLUDE_DIRECTORIES) get_target_property(INCLUDE_DIRS ${TARGET} INCLUDE_DIRECTORIES)
get_target_property(LINK_LIBS ${TARGET} LINK_LIBRARIES) get_target_property(LINK_LIBS ${TARGET} LINK_LIBRARIES)
foreach(LIB ${LINK_LIBS}) foreach(LIB ${LINK_LIBS})
if(NOT TARGET ${LIB}) # Ignore non-existing targets # Ignore non-existing targets or interface libs
get_target_property(LIB_TYPE ${LIB} TYPE)
if(NOT TARGET ${LIB} OR LIB_TYPE STREQUAL "INTERFACE_LIBRARY")
continue() continue()
endif() endif()
get_target_property(TARGET_INCLUDE_DIRS ${LIB} INCLUDE_DIRECTORIES) get_target_property(TARGET_INCLUDE_DIRS ${LIB} INCLUDE_DIRECTORIES)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment