From 5b1e350b2e5d1e7837e79f2be1ea7df006a68ba4 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Fri, 29 May 2020 10:40:48 -0400 Subject: [PATCH] remove deprecated /Za option from MSVC --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 32b125c2..4152c0c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,7 @@ set(CMAKE_C_STANDARD_REQUIRED ON) if(MSVC) add_compile_definitions(_CRT_SECURE_NO_WARNINGS) - add_compile_options(/Za) + # add_compile_options(/Za) endif(MSVC) add_subdirectory(conversions)