From 696beed48046507329f6d2b9e35ba5cf56df59ff Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 14 Oct 2020 10:41:44 +0300 Subject: cmake: don't install SafeInt --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index c868a3b..2d38a36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,12 +4,12 @@ project(winapi_utf8 CXX) include(cmake/common.cmake) -add_subdirectory(3rdparty/microsoft/SafeInt) - file(GLOB_RECURSE winapi_utf8_include "include/*.hpp") file(GLOB winapi_utf8_src "src/*.cpp") add_library(winapi_utf8 ${winapi_utf8_include} ${winapi_utf8_src}) target_include_directories(winapi_utf8 PUBLIC include/) + +add_subdirectory(3rdparty/microsoft/SafeInt EXCLUDE_FROM_ALL) target_link_libraries(winapi_utf8 PRIVATE SafeInt) # Vista is the lower bound (due to WC_ERR_INVALID_CHARS): -- cgit v1.2.3