From 3a8bafd7b15dab5f10745e9bab2396e0373e45e7 Mon Sep 17 00:00:00 2001 From: Jared Davenport Date: Mon, 1 Jul 2024 05:04:32 +0000 Subject: [PATCH] doesn't detect correct ffmpeg version for android --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7466ea7593..9b224f3a31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -317,7 +317,7 @@ if(FFmpeg_FOUND) SET(FFVER_OK TRUE) # Can not detect FFmpeg version on Windows for now - if (NOT WIN32) + if (NOT WIN32 AND NOT ANDROID) if(FFmpeg_AVFORMAT_VERSION VERSION_LESS "57.56.100") message(STATUS "libavformat is too old! (${FFmpeg_AVFORMAT_VERSION}, wanted 57.56.100)") set(FFVER_OK FALSE)