infra: fix missing tvg -> tvg_beta tag.

breakage was introduced by 6ad1b1bf73
This commit is contained in:
Hermet Park 2021-08-09 12:56:11 +09:00
parent 6ad1b1bf73
commit ae8120bb29
3 changed files with 6 additions and 6 deletions

View file

@ -24,7 +24,7 @@ if get_option('loaders').contains('svg') == true
config_h.set10('THORVG_SVG_LOADER_SUPPORT', true) config_h.set10('THORVG_SVG_LOADER_SUPPORT', true)
endif endif
if get_option('loaders').contains('tvg') == true if get_option('loaders').contains('tvg_beta') == true
config_h.set10('THORVG_TVG_LOADER_SUPPORT', true) config_h.set10('THORVG_TVG_LOADER_SUPPORT', true)
endif endif
@ -36,7 +36,7 @@ if get_option('loaders').contains('jpg') == true
config_h.set10('THORVG_JPG_LOADER_SUPPORT', true) config_h.set10('THORVG_JPG_LOADER_SUPPORT', true)
endif endif
if get_option('savers').contains('tvg') == true if get_option('savers').contains('tvg_beta') == true
config_h.set10('THORVG_TVG_SAVER_SUPPORT', true) config_h.set10('THORVG_TVG_SAVER_SUPPORT', true)
endif endif
@ -100,11 +100,11 @@ Summary:
get_option('engines').contains('gl'), get_option('engines').contains('gl'),
get_option('vectors').contains('avx'), get_option('vectors').contains('avx'),
get_option('vectors').contains('neon'), get_option('vectors').contains('neon'),
get_option('loaders').contains('tvg'), get_option('loaders').contains('tvg_beta'),
get_option('loaders').contains('svg'), get_option('loaders').contains('svg'),
get_option('loaders').contains('png'), get_option('loaders').contains('png'),
get_option('loaders').contains('jpg'), get_option('loaders').contains('jpg'),
get_option('savers').contains('tvg'), get_option('savers').contains('tvg_beta'),
get_option('bindings').contains('capi'), get_option('bindings').contains('capi'),
get_option('log'), get_option('log'),
get_option('tests'), get_option('tests'),

View file

@ -8,7 +8,7 @@ if get_option('loaders').contains('png') == true
subdir('png') subdir('png')
endif endif
if get_option('loaders').contains('tvg') == true if get_option('loaders').contains('tvg_beta') == true
subdir('tvg') subdir('tvg')
endif endif

View file

@ -1,6 +1,6 @@
subsaver_dep = [] subsaver_dep = []
if get_option('savers').contains('tvg') == true if get_option('savers').contains('tvg_beta') == true
subdir('tvg') subdir('tvg')
endif endif