diff options
| author | ruki <[email protected]> | 2024-09-16 23:52:37 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-09-16 23:52:37 +0800 |
| commit | 647b1efa1d3646ed0e753e3b41d0fa3486313e63 (patch) | |
| tree | a35c8b6e630275c333d1d3b6f8d2556620b8a3a0 /xmake/core/project | |
| parent | b61bb48dd89bfa135cdcf7399add04ee04c05267 (diff) | |
fix runtime
Diffstat (limited to 'xmake/core/project')
| -rw-r--r-- | xmake/core/project/policy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua index 9390d336e..dcef4c421 100644 --- a/xmake/core/project/policy.lua +++ b/xmake/core/project/policy.lua @@ -85,7 +85,7 @@ function policy.policies() -- Force C++ modules fallback dependency scanner for msvc ["build.c++.msvc.fallbackscanner"] = {description = "Force msvc fallback module dependency scanner.", default = false, type = "boolean"}, -- Set the default vs runtime, e.g. MT, MD - ["build.c++.msvc.runtime"] = {description = "Set the default vs runtime.", default = "MT", type = "string", values = {"MT", "MD"}}, + ["build.c++.msvc.runtime"] = {description = "Set the default vs runtime.", type = "string", values = {"MT", "MD"}}, -- Force C++ modules fallback dependency scanner for gcc ["build.c++.gcc.fallbackscanner"] = {description = "Force gcc fallback module dependency scanner.", default = false, type = "boolean"}, -- Force to enable new cxx11 abi in C++ modules for gcc |
