thorvg/meson.build
Hermet Park 86300c5fc0 sw_engine: optimize raster.
memset() is more than 10x faster than manual loop.

Thus we replace it to manipulate buffer pixels.

Change-Id: If0f255578f7d49ff6704c4f15e2eefe435cc3c15
2020-06-23 16:55:06 +09:00

31 lines
625 B
Meson

project('tizenvg',
'cpp',
default_options : ['buildtype=debugoptimized', 'werror=false', 'cpp_std=c++14', 'optimization=s'],
version : '0.1.0',
license : 'Apache-2.0')
config_h = configuration_data()
configure_file(
output: 'config.h',
configuration: config_h
)
headers = [include_directories('inc')]
subdir('inc')
subdir('src')
summary = '''
Summary:
tizenvg version : @0@
Build type : @1@
Prefix : @2@
'''.format(
meson.project_version(),
get_option('buildtype'),
get_option('prefix'),
)
message(summary)