From: Hermet Park Date: Mon, 9 Aug 2021 03:56:11 +0000 (+0900) Subject: infra: fix missing tvg -> tvg_beta tag. X-Git-Tag: accepted/tizen/unified/20210810.135318~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b0bce6cd14480ba19e8383c7d1ff752fbb86f06;p=platform%2Fcore%2Fgraphics%2Ftizenvg.git infra: fix missing tvg -> tvg_beta tag. breakage was introduced by 6ad1b1bf732c108ec7e626b9005a76fbc4eb91df --- diff --git a/meson.build b/meson.build index 4923b8d..e808552 100644 --- a/meson.build +++ b/meson.build @@ -24,7 +24,7 @@ if get_option('loaders').contains('svg') == true config_h.set10('THORVG_SVG_LOADER_SUPPORT', true) endif -if get_option('loaders').contains('tvg') == true +if get_option('loaders').contains('tvg_beta') == true config_h.set10('THORVG_TVG_LOADER_SUPPORT', true) endif @@ -36,7 +36,7 @@ if get_option('loaders').contains('jpg') == true config_h.set10('THORVG_JPG_LOADER_SUPPORT', true) endif -if get_option('savers').contains('tvg') == true +if get_option('savers').contains('tvg_beta') == true config_h.set10('THORVG_TVG_SAVER_SUPPORT', true) endif @@ -100,11 +100,11 @@ Summary: get_option('engines').contains('gl'), get_option('vectors').contains('avx'), 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('png'), get_option('loaders').contains('jpg'), - get_option('savers').contains('tvg'), + get_option('savers').contains('tvg_beta'), get_option('bindings').contains('capi'), get_option('log'), get_option('tests'), diff --git a/src/loaders/meson.build b/src/loaders/meson.build index 24b6544..6a4433b 100644 --- a/src/loaders/meson.build +++ b/src/loaders/meson.build @@ -8,7 +8,7 @@ if get_option('loaders').contains('png') == true subdir('png') endif -if get_option('loaders').contains('tvg') == true +if get_option('loaders').contains('tvg_beta') == true subdir('tvg') endif diff --git a/src/savers/meson.build b/src/savers/meson.build index 2b35e38..0d8694c 100644 --- a/src/savers/meson.build +++ b/src/savers/meson.build @@ -1,6 +1,6 @@ subsaver_dep = [] -if get_option('savers').contains('tvg') == true +if get_option('savers').contains('tvg_beta') == true subdir('tvg') endif