build: Don't use / in target names

It is unnecessary, and meson doesn't like it.
This commit is contained in:
Matthias Clasen
2024-10-05 08:55:16 -04:00
parent 28817b4bb2
commit 34c69b2868

View File

@@ -11,7 +11,7 @@ if win32_enabled
# compile_resources doesn't like to consume targets with multiple outputs,
# and the xxx.exe.manifest and xxx.rc are tied together
uac_rc = custom_target(
'tools/@0@.rc'.format(uac_exe_name),
'@0@-rc'.format(uac_exe_name),
output: ['@0@.rc'.format(uac_exe_name)],
command: [gen_uac_manifest,
'-p=@0@'.format(uac_exe_pkg),