From 338ba27548d5f16d398b0d5597e71ebe8d80239c Mon Sep 17 00:00:00 2001 From: Francesco Pretto Date: Sun, 12 Apr 2020 19:26:47 +0200 Subject: [PATCH] Enable correct __cplusplus versioning in MSVC --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b0c3d82..4c1f6fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,11 @@ else() set(IS_ROOT_PROJECT OFF) endif() +if (MSVC) + # Enable correct __cplusplus versioning in MSVC + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:__cplusplus") +endif() + option(UTF8_TESTS "Enable tests for UTF8-CPP" ${IS_ROOT_PROJECT}) option(UTF8_INSTALL "Enable installation for UTF8-CPP" ${IS_ROOT_PROJECT}) option(UTF8_SAMPLES "Enable building samples for UTF8-CPP" ${IS_ROOT_PROJECT})