From a937320c65e7e5e37d6423a4870234c74837481a Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Wed, 17 Jul 2024 20:43:38 +0300 Subject: [PATCH] engine: wscript: add ffmpeg hidden option, just to make it easier for me to switch between branches --- engine/wscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/wscript b/engine/wscript index 8c22460b..52a6ee36 100644 --- a/engine/wscript +++ b/engine/wscript @@ -32,6 +32,9 @@ def options(opt): grp.add_option('--enable-engine-fuzz', action = 'store_true', dest = 'ENGINE_FUZZ', default = False, help = 'add LLVM libFuzzer [default: %(default)s]' ) + grp.add_option('--enable-ffmpeg', action = 'store_true', dest = 'FFMPEG', default = False, + help = '') # hidden option, does nothing + opt.load('sdl2') def configure(conf):