From bab6409d4e04674ab82266969c193e7c7d7a53c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?okhowang=28=E7=8E=8B=E6=B2=9B=E6=96=87=29?= Date: Tue, 7 Apr 2020 12:20:14 +0800 Subject: [PATCH] Fix MSVC compatibility --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3c5a9e7..9ad6842 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -56,5 +56,5 @@ add_test(fwd_impl_test fwd_impl_test) add_executable(exception exception.cpp) if(NOT MSVC) target_compile_options(exception PRIVATE -fno-exceptions) - target_include_directories(exception PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../include) endif() +target_include_directories(exception PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../include)