Bump Meson version
Build file was using a now-deprecated property
This commit is contained in:
parent
2f13615342
commit
c564df55aa
2 changed files with 4 additions and 3 deletions
|
@ -2,5 +2,6 @@ version_sh = find_program('./version.sh')
|
||||||
version_inc = include_directories('.')
|
version_inc = include_directories('.')
|
||||||
version_h = custom_target('git_version.h',
|
version_h = custom_target('git_version.h',
|
||||||
command : [version_sh, meson.source_root()],
|
command : [version_sh, meson.source_root()],
|
||||||
build_always : true, # has internal check whether target file will be refreshed
|
build_by_default: true,
|
||||||
output : ['git_version.h', 'git_version.xml'])
|
build_always_stale: true, # has internal check whether target file will be refreshed
|
||||||
|
output: ['git_version.h', 'git_version.xml'])
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('Aegisub', ['c', 'cpp'], license : 'BSD-3-Clause',
|
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'])
|
default_options : ['cpp_std=c++11', 'b_lto=true'])
|
||||||
|
|
||||||
subdir('build')
|
subdir('build')
|
||||||
|
|
Loading…
Reference in a new issue