From 09d3041f81526aea348827cc1e7779f2fd1fd997 Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Fri, 17 Apr 2020 14:23:40 +0200 Subject: [PATCH] make standalone windows compatible (#20) Remove warning flags from standalone target as they only work for clang, gcc compilers --- standalone/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/standalone/CMakeLists.txt b/standalone/CMakeLists.txt index e8ffc86..cd81e5a 100644 --- a/standalone/CMakeLists.txt +++ b/standalone/CMakeLists.txt @@ -30,7 +30,6 @@ add_executable(GreeterStandalone ${sources}) set_target_properties(GreeterStandalone PROPERTIES CXX_STANDARD 17 - COMPILE_FLAGS "-Wall -pedantic -Wextra" OUTPUT_NAME "Greeter" )