From ff51046d167a25bf4f41307e410cf6af56a0f473 Mon Sep 17 00:00:00 2001 From: Collecting Date: Wed, 29 Oct 2025 11:16:33 +0000 Subject: [PATCH] fix: FFmpeg Testing for CI due to Android & Windows failing, similar issue. Signed-off-by: Collecting --- src/citron/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/citron/CMakeLists.txt b/src/citron/CMakeLists.txt index efa38e944..f4d9fd3cb 100644 --- a/src/citron/CMakeLists.txt +++ b/src/citron/CMakeLists.txt @@ -526,9 +526,11 @@ endif() if (MSVC) include(CopyCitronSDLDeps) - include(CopyCitronFFmpegDeps) copy_citron_SDL_deps(citron) - copy_citron_FFmpeg_deps(citron) + if(CITRON_USE_BUNDLED_FFMPEG) + include(CopyCitronFFmpegDeps) + copy_citron_FFmpeg_deps(citron) + endif() endif() if (NOT APPLE AND ENABLE_OPENGL)