aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeex <zeex@rocketmail.com>2023-02-10 14:57:49 +0600
committerZeex <zeex@rocketmail.com>2023-02-10 15:54:07 +0600
commite935959d2f9cc642bcbb5e7759b2b1e7196b0947 (patch)
tree9feafdcba4ed2d8fe431334f5648201dc89f8376
parent23bf37f44e9bf8058483c8e96afd203eac0b9a6f (diff)
downloadsubhook-e935959d2f9cc642bcbb5e7759b2b1e7196b0947.zip
subhook-e935959d2f9cc642bcbb5e7759b2b1e7196b0947.tar.gz
subhook-e935959d2f9cc642bcbb5e7759b2b1e7196b0947.tar.bz2
Update compile options (Clang warning)HEADmaster
warning: unknown warning option '-Wall -Wextra'; did you mean '-Wextra'?
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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)