From fd12122c8698b21dbc2d129b3a567f5f1b943336 Mon Sep 17 00:00:00 2001 From: Tobias Frost Date: Mon, 13 Jun 2022 09:48:17 +0200 Subject: [PATCH] Fix add_compile_options spelling. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c279779..e9ef038 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,7 +53,7 @@ set(CMAKE_EXE_LINKER_FLAGS_LTO "${CMAKE_LINKER_FLAGS_RELEASE} -flto") add_compile_options(-Wall -Wextra) if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 7) - add_compile_option(-Wno-implicit-fallthrough) + add_compile_options(-Wno-implicit-fallthrough) endif() if (NOT DISABLE_CLIENT)