diff options
| author | ruki <[email protected]> | 2020-05-21 22:39:06 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-05-21 09:54:38 +0800 |
| commit | 38b0a926dfdab29c5c1aaeb182bdba6bda5a2970 (patch) | |
| tree | 36cfd99fc5731a8ca1a83e078880cff888533572 /xmake/platforms/windows/xmake.lua | |
| parent | f42509d5a1f4b98ef789bcd1a12cc436e3dc43b1 (diff) | |
improve set_formats
Diffstat (limited to 'xmake/platforms/windows/xmake.lua')
| -rw-r--r-- | xmake/platforms/windows/xmake.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmake/platforms/windows/xmake.lua b/xmake/platforms/windows/xmake.lua index 19ee3bb7a..f43d7179c 100644 --- a/xmake/platforms/windows/xmake.lua +++ b/xmake/platforms/windows/xmake.lua @@ -31,7 +31,11 @@ platform("windows") set_archs("x86", "x64") -- set formats - set_formats {static = "$(name).lib", object = "$(name).obj", shared = "$(name).dll", binary = "$(name).exe", symbol = "$(name).pdb"} + set_formats("static", "$(name).lib") + set_formats("object", "$(name).obj") + set_formats("shared", "$(name).dll") + set_formats("binary", "$(name).exe") + set_formats("symbol", "$(name).pdb") -- on check on_check("check") |
