From 722fce1e7829a781299a5209dcee73b24bf3b94d Mon Sep 17 00:00:00 2001 From: crueter Date: Mon, 10 Nov 2025 02:31:40 -0500 Subject: [PATCH] build Signed-off-by: crueter --- src/yuzu_cmd/CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/yuzu_cmd/CMakeLists.txt b/src/yuzu_cmd/CMakeLists.txt index 763c5886e7..c31c6df472 100644 --- a/src/yuzu_cmd/CMakeLists.txt +++ b/src/yuzu_cmd/CMakeLists.txt @@ -62,4 +62,11 @@ if (YUZU_STATIC_BUILD) # At a guess, it's probably because Qt handles the Qt executable for us, whereas this does not target_link_options(yuzu-cmd PRIVATE -static -lpthread) target_link_options(yuzu-cmd PRIVATE -static-libgcc -static-libstdc++) + + # needed for vma + target_compile_options(yuzu-cmd PRIVATE + -Wno-conversion + -Wno-unused-variable + -Wno-unused-parameter + -Wno-missing-field-initializers) endif()