From c564df55aa90675d4634360469b03d49f963c0ca Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Mon, 28 Jan 2019 16:42:31 -0500 Subject: [PATCH] Bump Meson version Build file was using a now-deprecated property --- build/meson.build | 5 +++-- meson.build | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build/meson.build b/build/meson.build index 85cc9f92c..df569be2c 100644 --- a/build/meson.build +++ b/build/meson.build @@ -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']) diff --git a/meson.build b/meson.build index 8df4b7e7a..1681bb1fa 100644 --- a/meson.build +++ b/meson.build @@ -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')