diff --git a/third-party/mmatch/CMakeLists.txt b/third-party/mmatch/CMakeLists.txt index f48e0739f..4a8da1ed6 100644 --- a/third-party/mmatch/CMakeLists.txt +++ b/third-party/mmatch/CMakeLists.txt @@ -6,6 +6,13 @@ set(mmatch_SOURCES add_library(mmatch OBJECT ${mmatch_SOURCES}) +if(NOT MSVC) + target_compile_options(mmatch + PRIVATE + -Wno-implicit-fallthrough + ) +endif() + set_target_properties( mmatch PROPERTIES FOLDER Lib