From c5238e110b52374c327cacc1e6fe4ceec9079073 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 5 Jan 2025 20:35:10 +0100 Subject: [PATCH] Ignore conversion warnings for now --- cmake/utils.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmake/utils.cmake b/cmake/utils.cmake index 46b92dc9..9c67459f 100644 --- a/cmake/utils.cmake +++ b/cmake/utils.cmake @@ -209,7 +209,9 @@ function(momo_target_set_warnings_as_errors target) return() endif() - set(compile_options -Wall -Wextra -Wconversion -pedantic -Werror -Wno-comment) + set(compile_options -Wall -Wextra + #-Wconversion + -pedantic -Werror -Wno-comment) if(MSVC) set(compile_options /W4 /WX)