Change-Id: Ie0a9f66a1415dd8d4395e4b537f5b7c39821acb9
- meson . build -Dlog=true -Dloaders="svg, tvg_beta, png, jpg" -Dsavers="tvg_beta"
+ meson . build -Dlog=true -Dloaders="svg, tvg, png, jpg" -Dsavers="tvg"
cd build
sudo ninja -C . install
cd build
sudo ninja -C . install
- meson . build -Dexamples=true -Dloaders="svg, tvg_beta, png, jpg" -Dsavers="tvg_beta"
+ meson . build -Dexamples=true -Dloaders="svg, tvg, png, jpg" -Dsavers="tvg"
cd build
sudo ninja -C . install
cd build
sudo ninja -C . install
- name: Install-ThorVG
run: |
- name: Install-ThorVG
run: |
- meson . build -Dloaders="svg, tvg_beta, png, jpg" -Dsavers="tvg_beta" -Dbindings="capi"
+ meson . build -Dloaders="svg, tvg, png, jpg" -Dsavers="tvg" -Dbindings="capi"
cd build
sudo ninja -C . install
cd ..
cd build
sudo ninja -C . install
cd ..
- meson . build -Dtests=true -Dloaders="svg, tvg_beta, png, jpg" -Dsavers="tvg_beta" -Dbindings="capi" --errorlogs
+ meson . build -Dtests=true -Dloaders="svg, tvg, png, jpg" -Dsavers="tvg" -Dbindings="capi" --errorlogs
cd build
sudo ninja -C . install test
cd build
sudo ninja -C . install test
config_h.set10('THORVG_SVG_LOADER_SUPPORT', true)
endif
config_h.set10('THORVG_SVG_LOADER_SUPPORT', true)
endif
-if get_option('loaders').contains('tvg_beta') == true
+if get_option('loaders').contains('tvg') == true
config_h.set10('THORVG_TVG_LOADER_SUPPORT', true)
endif
config_h.set10('THORVG_TVG_LOADER_SUPPORT', true)
endif
config_h.set10('THORVG_JPG_LOADER_SUPPORT', true)
endif
config_h.set10('THORVG_JPG_LOADER_SUPPORT', true)
endif
-if get_option('savers').contains('tvg_beta') == true
+if get_option('savers').contains('tvg') == true
config_h.set10('THORVG_TVG_SAVER_SUPPORT', true)
endif
config_h.set10('THORVG_TVG_SAVER_SUPPORT', true)
endif
simd_type,
get_option('engines').contains('sw'),
get_option('engines').contains('gl'),
simd_type,
get_option('engines').contains('sw'),
get_option('engines').contains('gl'),
- get_option('loaders').contains('tvg_beta'),
+ get_option('loaders').contains('tvg'),
get_option('loaders').contains('svg'),
get_option('loaders').contains('png'),
get_option('loaders').contains('jpg'),
get_option('loaders').contains('svg'),
get_option('loaders').contains('png'),
get_option('loaders').contains('jpg'),
- get_option('savers').contains('tvg_beta'),
+ get_option('savers').contains('tvg'),
get_option('bindings').contains('capi'),
get_option('log'),
get_option('tests'),
get_option('bindings').contains('capi'),
get_option('log'),
get_option('tests'),
option('loaders',
type: 'array',
option('loaders',
type: 'array',
- choices: ['', 'svg', 'png', 'jpg', 'tvg_beta'],
- value: ['svg', 'png', 'jpg', 'tvg_beta'],
+ choices: ['', 'tvg', 'svg', 'png', 'jpg'],
+ value: ['svg', 'tvg'],
description: 'Enable File Loaders in thorvg')
option('savers',
type: 'array',
description: 'Enable File Loaders in thorvg')
option('savers',
type: 'array',
- choices: ['', 'tvg_beta'],
- value: ['tvg_beta'],
+ choices: ['', 'tvg'],
+ value: [''],
description: 'Enable File Savers in thorvg')
option('vector',
description: 'Enable File Savers in thorvg')
option('vector',
-if get_option('loaders').contains('tvg_beta') == true
+if get_option('loaders').contains('tvg') == true
-if get_option('savers').contains('tvg_beta') == true
+if get_option('savers').contains('tvg') == true