From e935959d2f9cc642bcbb5e7759b2b1e7196b0947 Mon Sep 17 00:00:00 2001 From: Zeex Date: Fri, 10 Feb 2023 14:57:49 +0600 Subject: Update compile options (Clang warning) warning: unknown warning option '-Wall -Wextra'; did you mean '-Wextra'? --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2afd850..13b7d5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,7 +48,7 @@ target_include_directories(subhook PUBLIC ) if(CMAKE_COMPILER_ID MATCHES GNU OR CMAKE_C_COMPILER_ID MATCHES Clang) - target_compile_options(subhook PRIVATE "-Wall -Wextra") + target_compile_options(subhook PRIVATE -Wall -Wextra) endif() if(SUBHOOK_FORCE_32BIT) -- cgit v1.1