add libwebpdecoder wrap fallback
This commit is contained in:
parent
24866d89df
commit
4a4c174285
3 changed files with 8 additions and 2 deletions
|
@ -107,8 +107,8 @@ dep_freetype = dependency('freetype2', required : t
|
|||
dep_png = dependency('libpng', version : '>=1.5', required : true, static : static, fallback : ['libpng', 'png_dep'])
|
||||
dep_sdl2 = dependency('sdl2', version : '>=2.0.5', required : true, static : static)
|
||||
dep_sdl2_mixer = dependency('SDL2_mixer', required : false, static : static)
|
||||
dep_webp = dependency('libwebp', version : '>=0.5', required : false, static : static)
|
||||
dep_webpdecoder = dependency('libwebpdecoder', version : '>=0.5', required : false, static : static)
|
||||
dep_webp = dependency('libwebp', version : '>=0.5', required : false, static : static, fallback : ['libwebp', 'webp_dep'])
|
||||
dep_webpdecoder = dependency('libwebpdecoder', version : '>=0.5', required : false, static : static, fallback : ['libwebp', 'webpdecoder_dep'])
|
||||
dep_zlib = dependency('zlib', required : true, static : static, fallback : ['zlib', 'zlib_dep'])
|
||||
dep_zip = dependency('libzip', version : '>=1.2', required : false, static : static, fallback : ['libzip', 'libzip_dep'])
|
||||
dep_crypto = dependency('libcrypto', required : false, static : static)
|
||||
|
|
1
subprojects/.gitignore
vendored
1
subprojects/.gitignore
vendored
|
@ -3,3 +3,4 @@ libzip
|
|||
zlib
|
||||
libpng
|
||||
freetype
|
||||
libwebp
|
||||
|
|
5
subprojects/libwebp.wrap
Normal file
5
subprojects/libwebp.wrap
Normal file
|
@ -0,0 +1,5 @@
|
|||
[wrap-git]
|
||||
directory=libwebp
|
||||
url=https://github.com/taisei-project/libwebp.git
|
||||
push-url=git@github.com:taisei-project/libwebp.git
|
||||
revision=meson-1.0.2
|
Loading…
Reference in a new issue