thorvg/meson.build
Hermet Park 56e866dd36 renamed project name tizenvg => thorvg
we're going to open this project as the independent one,

thus removed tizen naming here.

Change-Id: Ib3c898067dd9186e893f7cb0903fd70d2ce7b31f
2020-06-25 13:57:41 +09:00

31 lines
621 B
Meson

project('thorvg',
'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:
thorvg version : @0@
Build type : @1@
Prefix : @2@
'''.format(
meson.project_version(),
get_option('buildtype'),
get_option('prefix'),
)
message(summary)