From 68d4e65ea53eb2b92d936c4e5da70b0d79eca5d5 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sat, 10 Oct 2020 16:15:41 +0200 Subject: [PATCH] Locally ignored "-Wmultichar" not working on gcc, make global --- cmake/SfizzConfig.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/SfizzConfig.cmake b/cmake/SfizzConfig.cmake index 95b0adaa..2b2cdd4a 100644 --- a/cmake/SfizzConfig.cmake +++ b/cmake/SfizzConfig.cmake @@ -57,6 +57,7 @@ endif() if (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") add_compile_options(-Wall) add_compile_options(-Wextra) + add_compile_options(-Wno-multichar) add_compile_options(-Werror=return-type) if (SFIZZ_SYSTEM_PROCESSOR MATCHES "^(i.86|x86_64)$") add_compile_options(-msse2)