Revert "meson: do not use build_always, it's deprecated and seems to misbehave on latest meson from git"

This reverts commit e0b722694b.
This commit is contained in:
Andrei Alexeyev 2018-07-01 11:48:54 +03:00
parent 5d293393b8
commit 52fd5a0429
No known key found for this signature in database
GPG key ID: 363707CD4C7FE8A4
5 changed files with 6 additions and 6 deletions

View file

@ -4,8 +4,7 @@ if macos_app_bundle
version_deps += custom_target('macOS property list',
command : [preprocess_command, '@INPUT@', '@OUTPUT@'],
build_by_default : true,
build_always_stale : true,
build_always : true,
input : 'Info.plist.in',
output : 'Info.plist',
install : true,

View file

@ -45,6 +45,7 @@ if validate_glsl
'@INPUT@', '-o', '@OUTPUT@'
],
install : false,
build_always : false,
build_by_default : true,
depfile : '@0@.d'.format(fname.underscorify()),
)

View file

@ -140,6 +140,7 @@ if validate_glsl
'@INPUT@', '-o', '@OUTPUT@'
],
install : false,
build_always : false,
build_by_default : true,
depfile : '@0@.d'.format(fname.underscorify()),
)

View file

@ -50,6 +50,7 @@ validation_code = '''if validate_glsl
'@INPUT@', '-o', '@OUTPUT@'
],
install : false,
build_always : false,
build_by_default : true,
depfile : '@0@.d'.format(fname.underscorify()),
)

View file

@ -1,8 +1,7 @@
version_deps += custom_target('version information',
command : [preprocess_command, '@INPUT@', '@OUTPUT@'],
build_by_default : true,
build_always_stale : true,
build_always : true,
input : 'version_auto.c.in',
output : 'version_auto.c',
)
@ -23,8 +22,7 @@ if host_machine.system() == 'windows'
rc_target = custom_target('Windows resource file',
command : [preprocess_command, rcdefs, '@INPUT@', '@OUTPUT@'],
build_by_default : true,
build_always_stale : true,
build_always : true,
input : 'taisei.rc.in',
output : 'taisei.rc',
)