Bump Meson version

Build file was using a now-deprecated property
This commit is contained in:
Ryan Lucia 2019-01-28 16:42:31 -05:00
parent 2f13615342
commit c564df55aa
2 changed files with 4 additions and 3 deletions

View File

@ -2,5 +2,6 @@ version_sh = find_program('./version.sh')
version_inc = include_directories('.')
version_h = custom_target('git_version.h',
command : [version_sh, meson.source_root()],
build_always : true, # has internal check whether target file will be refreshed
output : ['git_version.h', 'git_version.xml'])
build_by_default: true,
build_always_stale: true, # has internal check whether target file will be refreshed
output: ['git_version.h', 'git_version.xml'])

View File

@ -1,5 +1,5 @@
project('Aegisub', ['c', 'cpp'], license : 'BSD-3-Clause',
meson_version : '>=0.41.0',
meson_version : '>=0.47.0',
default_options : ['cpp_std=c++11', 'b_lto=true'])
subdir('build')