summaryrefslogtreecommitdiff
path: root/xmake/actions/build/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-02-18 22:35:50 +0800
committerruki <[email protected]>2020-02-18 09:35:01 +0800
commit753309f3eca9445904c2e70d99fcdc49a67e5add (patch)
tree141d7d83ff6cbe8782c9ab85f981d993f573cfb8 /xmake/actions/build/xmake.lua
parent0835cadcfe5f48870790cce20d6a3968d7b1ccf7 (diff)
move trybuild config
Diffstat (limited to 'xmake/actions/build/xmake.lua')
-rw-r--r--xmake/actions/build/xmake.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/xmake/actions/build/xmake.lua b/xmake/actions/build/xmake.lua
index 2d57e554a..eab28b41f 100644
--- a/xmake/actions/build/xmake.lua
+++ b/xmake/actions/build/xmake.lua
@@ -46,9 +46,6 @@ task("build")
, {'j', "jobs", "kv", tostring(math.ceil(os.cpuinfo().ncpu * 3 / 2)),
"Specifies the number of jobs to build simultaneously." }
, {'w', "warning", "k", false , "Enable the warnings output." }
- , {nil, "try", "k", false , "Try building project using third-party buildsystem." }
- , {nil, "try-tool", "kv", nil , "Set the third-party buildsystem tool when `--try` is enabled."
- , values = {"make", "cmake", "autotools", "msbuild", "xcodebuild"}}
, {nil, "files", "kv", nil , "Build the given source files.",
"e.g. ",
" - xmake --files=src/main.c",