From b1e25041d9b2c17f7842c097b0eecc5a0b4a8a1a Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 13 Sep 2019 18:57:48 +0200 Subject: [PATCH] Added include dir for BUILD_INTERFACE. --- src/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f22fa24..7876fc9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -13,7 +13,9 @@ set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION ${${PROJECT_NAME}_VERSION_MAJOR}) target_include_directories(${PROJECT_NAME} - PUBLIC "$") + PUBLIC + "$" + "$") target_link_libraries(${PROJECT_NAME} PUBLIC PkgConfig::Magick++)