From fcb7d8cd3cd1b0bdaa9fbbe8ef511cbcbe0900fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 26 Sep 2023 21:57:07 +0200 Subject: [PATCH] build: silence some QuickJS compilation warnings --- deps/quickjs/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deps/quickjs/CMakeLists.txt b/deps/quickjs/CMakeLists.txt index 2681f70f..67e0b2a5 100644 --- a/deps/quickjs/CMakeLists.txt +++ b/deps/quickjs/CMakeLists.txt @@ -13,6 +13,8 @@ if(CMAKE_C_COMPILER_ID MATCHES "AppleClang|Clang") -funsigned-char) else() list(APPEND qjs_cflags + -Wno-sign-compare + -Wno-unused-parameter -Wno-array-bounds -Wno-unused-variable -Wno-unused-but-set-variable)