We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eebb5fb commit b9cc274Copy full SHA for b9cc274
ecsact/private/ecsact_binary.bzl
@@ -45,8 +45,8 @@ def _ecsact_binary_impl(ctx):
45
outputs.append(interface_output_file)
46
47
if ctx.attr.tracy:
48
- tracy_dll_file = ctx.actions.declare_file("{}{}".format("profiler", ".dll"))
49
- tracy_lib_file = ctx.actions.declare_file("{}{}".format("profiler", ".lib"))
+ tracy_dll_file = ctx.actions.declare_file("{}{}".format("profiler", preferred_output_extension))
+ tracy_lib_file = ctx.actions.declare_file("{}{}".format("profiler", ctx.attr.interface_library_extension))
50
51
outputs.append(tracy_dll_file)
52
outputs.append(tracy_lib_file)
0 commit comments