Disable -Wimplicit-fallthrough for mmatch

This commit is contained in:
Johannes Schmidt 2025-09-24 10:03:55 +02:00
parent 05d933c18d
commit 47a9dab847

View file

@ -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