mirror of
https://github.com/thorvg/thorvg.git
synced 2025-07-27 16:47:00 +00:00

move out engine/loader dependency to its immediate parent folders. Change-Id: I7f08433fc6d2a333951fceaffea81cbe2e5da9e3
31 lines
604 B
Meson
31 lines
604 B
Meson
project('thorvg',
|
|
'cpp',
|
|
default_options : ['buildtype=debugoptimized', 'werror=false', '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)
|