From 9852e588c1257bd6e457d08f0009d698d1e09b7a Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Fri, 17 Jul 2020 16:32:37 +0200 Subject: [PATCH] Change compile options --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33a0b860c..927f42f77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,16 +50,11 @@ list(APPEND COMPILE_OPTIONS -Wunused-parameter -Wformat=2 -Wdisabled-optimization - -Wno-sign-conversion $<$:-Woverloaded-virtual> $<$:-Wno-old-style-cast> $<$:-fpermissive> ) -if(APPLE) - list(APPEND COMPILE_OPTIONS -Wno-unused-parameter) -endif() - option(BUILD_WERROR "Build with -Werror" OFF) if(BUILD_WERROR) list(APPEND COMPILE_OPTIONS -Werror)