diff options
| author | ruki <[email protected]> | 2020-12-24 23:23:10 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-12-24 23:23:10 +0800 |
| commit | 621e3706b229c39cfe4c94bfa9417405cde883fb (patch) | |
| tree | b6fcac4ae1120ed64af8dcaff032cda6d73393bb /xmake/rules/utils/compiler_runtime | |
| parent | 70865b36f34647bda2bdd218b428bcca0cecc9da (diff) | |
fix vs_runtime values
Diffstat (limited to 'xmake/rules/utils/compiler_runtime')
| -rw-r--r-- | xmake/rules/utils/compiler_runtime/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/utils/compiler_runtime/xmake.lua b/xmake/rules/utils/compiler_runtime/xmake.lua index a9ca1ac49..a00ef170e 100644 --- a/xmake/rules/utils/compiler_runtime/xmake.lua +++ b/xmake/rules/utils/compiler_runtime/xmake.lua @@ -25,7 +25,7 @@ rule("utils.compiler.runtime") -- set vs runtime local vs_runtime = get_config("vs_runtime") if vs_runtime and target:is_plat("windows") and not target:get("runtimes") then - target:set("runtimes", vs_runtime .. (is_mode("debug") and "d" or "")) + target:set("runtimes", vs_runtime) end end) |
