SvgLoader: Fix z-angle calculation
[platform/core/graphics/tizenvg.git] / meson.build
1 project('thorvg',
2         'cpp',
3         default_options : ['buildtype=debugoptimized', 'werror=false', 'cpp_std=c++14', 'optimization=s'],
4         version : '0.1.0',
5         license : 'Apache-2.0')
6
7 config_h = configuration_data()
8
9 configure_file(
10   output: 'config.h',
11   configuration: config_h
12 )
13
14 headers = [include_directories('inc')]
15
16 subdir('inc')
17 subdir('src')
18
19 summary = '''
20
21 Summary:
22     thorvg version :        @0@
23     Build type      :       @1@
24     Prefix          :       @2@
25 '''.format(
26         meson.project_version(),
27         get_option('buildtype'),
28         get_option('prefix'),
29     )
30
31 message(summary)