8 lines
159 B
Lua
8 lines
159 B
Lua
-- Adds -d as a debug suffix
|
|
rule("debug.suffix")
|
|
on_load(function (target)
|
|
if target:kind() ~= "binary" then
|
|
target:set("suffixname", "-d")
|
|
end
|
|
end)
|