From 3fe8fa9b3249d0785262b99772eaa7c74522ed10 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sun, 31 May 2026 00:20:35 +0200 Subject: [PATCH] fix: silencia -Wtautological-compare de stb_vorbis al cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6964f92..2aa3745 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,7 @@ target_link_libraries(${PROJECT_NAME} PRIVATE SDL3::SDL3) if(EXTERNAL_SOURCES) set_source_files_properties( ${EXTERNAL_SOURCES} - PROPERTIES COMPILE_OPTIONS "-Wno-missing-field-initializers;-Wno-deprecated-declarations" + PROPERTIES COMPILE_OPTIONS "-Wno-missing-field-initializers;-Wno-deprecated-declarations;-Wno-tautological-compare" ) endif()