summaryrefslogtreecommitdiff
path: root/xmake/core
diff options
context:
space:
mode:
authorruki <[email protected]>2024-07-22 17:41:30 +0800
committerGitHub <[email protected]>2024-07-22 17:41:30 +0800
commitaf5c479c7fc1eecf540b3e930b250a79ca34f19c (patch)
tree1e8136c11c5d9ff18618ee703d01f50a9e68d5da /xmake/core
parentc88a078c25a89452853e068ed06e0de6edefb4eb (diff)
parentbcdc71d60d1896c71a057438a859d9e6f7126c80 (diff)
Merge pull request #5367 from ChrisCatCP/msbuild
add policy msbuild.multi_tool_task
Diffstat (limited to 'xmake/core')
-rw-r--r--xmake/core/project/policy.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/core/project/policy.lua b/xmake/core/project/policy.lua
index 2eb2c1193..7299de719 100644
--- a/xmake/core/project/policy.lua
+++ b/xmake/core/project/policy.lua
@@ -133,6 +133,8 @@ function policy.policies()
["package.xmake.pass_depconfs"] = {description = "Automatically passes dependency configuration for inner xmake package", default = true, type = "boolean"},
-- It will force cmake package use ninja for build
["package.cmake_generator.ninja"] = {description = "Set cmake package use ninja for build", default = false, type = "boolean"},
+ -- Enable msbuild MultiToolTask
+ ["package.msbuild.multi_tool_task"] = {description = "Enable msbuild MultiToolTask.", type = "boolean"},
-- Stop to test on the first failure
["test.stop_on_first_failure"] = {description = "Stop to test on the first failure", default = false, type = "boolean"},
-- Return zero as exit code on failure