Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reinhold <sre@informatik.uni-kiel.de>2018-07-17 12:09:58 +0300
committerStefan Reinhold <sre@informatik.uni-kiel.de>2018-07-17 12:09:58 +0300
commit030454e3e9b6cbb46e6be5bb31c730bca715b1b0 (patch)
treed610425146b43731e2cb980cd1218646d7a758dd /CMakeLists.txt
parentd452c3b061549008404b81e359c8a8e3f2f043de (diff)
Fix for Windows: CMake complains about INTERFACE_SOURCES directory
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8259516..1693069 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -58,7 +58,9 @@ target_include_directories(GSL INTERFACE
$<BUILD_INTERFACE:
${CMAKE_CURRENT_SOURCE_DIR}/include
>
- $<INSTALL_INTERFACE:include>
+ $<INSTALL_INTERFACE:
+ include
+ >
)
if ((CMAKE_VERSION GREATER 3.7.9) OR (CMAKE_VERSION EQUAL 3.7.9))