ttf: removed the beta tag.

incorporate TTF support into the CI build tests.
This commit is contained in:
Hermet Park 2024-01-03 11:31:35 +09:00 committed by Hermet Park
parent 139a1c5e85
commit 8375c53461
3 changed files with 8 additions and 8 deletions

View file

@ -53,12 +53,12 @@ if all_loaders or get_option('loaders').contains('lottie') == true
config_h.set10('THORVG_LOTTIE_LOADER_SUPPORT', true)
endif
if get_option('loaders').contains('webp_beta') == true
config_h.set10('THORVG_WEBP_LOADER_SUPPORT', true)
if all_loaders or get_option('loaders').contains('ttf') == true
config_h.set10('THORVG_TTF_LOADER_SUPPORT', true)
endif
if get_option('loaders').contains('ttf_beta') == true
config_h.set10('THORVG_TTF_LOADER_SUPPORT', true)
if get_option('loaders').contains('webp_beta') == true
config_h.set10('THORVG_WEBP_LOADER_SUPPORT', true)
endif
@ -138,7 +138,7 @@ Summary:
Raster Engine (WG): @6@
Loader (TVG): @7@
Loader (SVG): @8@
Loader (TTF_BETA): @9@
Loader (TTF): @9@
Loader (LOTTIE): @10@
Loader (PNG): @11@
Loader (JPG): @12@
@ -164,7 +164,7 @@ Summary:
get_option('engines').contains('wg_beta'),
all_loaders or get_option('loaders').contains('tvg'),
all_loaders or get_option('loaders').contains('svg'),
get_option('loaders').contains('ttf_beta'),
all_loaders or get_option('loaders').contains('ttf'),
all_loaders or get_option('loaders').contains('lottie'),
all_loaders or get_option('loaders').contains('png'),
all_loaders or get_option('loaders').contains('jpg'),

View file

@ -6,7 +6,7 @@ option('engines',
option('loaders',
type: 'array',
choices: ['', 'tvg', 'svg', 'png', 'jpg', 'lottie', 'ttf_beta', 'webp_beta', 'all'],
choices: ['', 'tvg', 'svg', 'png', 'jpg', 'lottie', 'ttf', 'webp_beta', 'all'],
value: ['svg', 'tvg', 'lottie'],
description: 'Enable File Loaders in thorvg ("all" does not include "*_beta".)')

View file

@ -8,7 +8,7 @@ if all_loaders or get_option('loaders').contains('svg') == true
subdir('svg')
endif
if get_option('loaders').contains('ttf_beta') == true
if all_loaders or get_option('loaders').contains('ttf') == true
subdir('ttf')
endif