thorvg/meson.build
Hermet Park c20274aaf8 + Initial draft
Introduce project skeleton such as build envrionment and interfaces
to build up code further cooperatively.

Change-Id: Ie9ac38991f609d33637283134906d7cc3f2ac19e
2020-03-25 11:53:03 +09:00

31 lines
607 B
Meson

project('tizenvg',
'cpp',
default_options : ['buildtype=debugoptimized', 'werror=false', 'cpp_std=c++14'],
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)