3 default_options : ['buildtype=debugoptimized', 'b_sanitize=none', 'werror=false', 'optimization=s'],
7 config_h = configuration_data()
9 add_project_arguments('-DEXAMPLE_DIR="@0@/src/examples/images"'.format(meson.current_source_dir()), language : 'cpp')
11 if get_option('engines').contains('sw') == true
12 config_h.set10('THORVG_SW_RASTER_SUPPORT', true)
15 if get_option('engines').contains('gl') == true
16 config_h.set10('THORVG_GL_RASTER_SUPPORT', true)
19 if get_option('loaders').contains('svg') == true
20 config_h.set10('THORVG_SVG_LOADER_SUPPORT', true)
23 if get_option('loaders').contains('tvg') == true
24 config_h.set10('THORVG_TVG_LOADER_SUPPORT', true)
27 if get_option('loaders').contains('png') == true
28 config_h.set10('THORVG_PNG_LOADER_SUPPORT', true)
31 if get_option('vectors').contains('avx') == true
32 config_h.set10('THORVG_AVX_VECTOR_SUPPORT', true)
35 if get_option('bindings').contains('capi') == true
36 config_h.set10('THORVG_CAPI_BINDING_SUPPORT', true)
39 if get_option('log') == true
40 config_h.set10('THORVG_LOG_ENABLED', true)
45 configuration: config_h
48 headers = [include_directories('inc'), include_directories('.')]
53 if get_option('tests') == true
63 Raster Engine (SW): @3@
64 Raster Engine (GL): @4@
65 AVX SIMD Instruction: @5@
76 meson.project_version(),
77 get_option('buildtype'),
79 get_option('engines').contains('sw'),
80 get_option('engines').contains('gl'),
81 get_option('vectors').contains('avx'),
82 get_option('loaders').contains('tvg'),
83 get_option('loaders').contains('svg'),
84 get_option('loaders').contains('png'),
85 get_option('bindings').contains('capi'),
88 get_option('examples'),
89 get_option('tools').contains('svg2png'),