mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
ttf: removed the beta tag.
incorporate TTF support into the CI build tests.
This commit is contained in:
parent
139a1c5e85
commit
8375c53461
3 changed files with 8 additions and 8 deletions
12
meson.build
12
meson.build
|
@ -53,12 +53,12 @@ if all_loaders or get_option('loaders').contains('lottie') == true
|
||||||
config_h.set10('THORVG_LOTTIE_LOADER_SUPPORT', true)
|
config_h.set10('THORVG_LOTTIE_LOADER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('loaders').contains('webp_beta') == true
|
if all_loaders or get_option('loaders').contains('ttf') == true
|
||||||
config_h.set10('THORVG_WEBP_LOADER_SUPPORT', true)
|
config_h.set10('THORVG_TTF_LOADER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('loaders').contains('ttf_beta') == true
|
if get_option('loaders').contains('webp_beta') == true
|
||||||
config_h.set10('THORVG_TTF_LOADER_SUPPORT', true)
|
config_h.set10('THORVG_WEBP_LOADER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ Summary:
|
||||||
Raster Engine (WG): @6@
|
Raster Engine (WG): @6@
|
||||||
Loader (TVG): @7@
|
Loader (TVG): @7@
|
||||||
Loader (SVG): @8@
|
Loader (SVG): @8@
|
||||||
Loader (TTF_BETA): @9@
|
Loader (TTF): @9@
|
||||||
Loader (LOTTIE): @10@
|
Loader (LOTTIE): @10@
|
||||||
Loader (PNG): @11@
|
Loader (PNG): @11@
|
||||||
Loader (JPG): @12@
|
Loader (JPG): @12@
|
||||||
|
@ -164,7 +164,7 @@ Summary:
|
||||||
get_option('engines').contains('wg_beta'),
|
get_option('engines').contains('wg_beta'),
|
||||||
all_loaders or get_option('loaders').contains('tvg'),
|
all_loaders or get_option('loaders').contains('tvg'),
|
||||||
all_loaders or get_option('loaders').contains('svg'),
|
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('lottie'),
|
||||||
all_loaders or get_option('loaders').contains('png'),
|
all_loaders or get_option('loaders').contains('png'),
|
||||||
all_loaders or get_option('loaders').contains('jpg'),
|
all_loaders or get_option('loaders').contains('jpg'),
|
||||||
|
|
|
@ -6,7 +6,7 @@ option('engines',
|
||||||
|
|
||||||
option('loaders',
|
option('loaders',
|
||||||
type: 'array',
|
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'],
|
value: ['svg', 'tvg', 'lottie'],
|
||||||
description: 'Enable File Loaders in thorvg ("all" does not include "*_beta".)')
|
description: 'Enable File Loaders in thorvg ("all" does not include "*_beta".)')
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ if all_loaders or get_option('loaders').contains('svg') == true
|
||||||
subdir('svg')
|
subdir('svg')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('loaders').contains('ttf_beta') == true
|
if all_loaders or get_option('loaders').contains('ttf') == true
|
||||||
subdir('ttf')
|
subdir('ttf')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue