2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 09:56:22 +01:00

engine: wscript: add ffmpeg hidden option, just to make it easier for me to switch between branches

This commit is contained in:
Alibek Omarov 2024-07-17 20:43:38 +03:00
parent a81a0cb059
commit a937320c65

View File

@ -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):