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:
parent
5d293393b8
commit
52fd5a0429
5 changed files with 6 additions and 6 deletions
|
@ -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,
|
||||
|
|
|
@ -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()),
|
||||
)
|
||||
|
|
|
@ -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()),
|
||||
)
|
||||
|
|
|
@ -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()),
|
||||
)
|
||||
|
|
|
@ -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',
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue