summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-07-19 23:19:40 +0800
committerruki <[email protected]>2019-07-19 13:58:04 +0800
commite36b774be4c3c03ea9b154a9d73bbbe4a0a641a6 (patch)
tree100788d5e3a301c4c27b9e626ab67ad0a3394055
parent60532b02e42b277cebfa166f54a80f2c443dbdbf (diff)
remove -f
-rw-r--r--xmake/actions/build/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/actions/build/xmake.lua b/xmake/actions/build/xmake.lua
index cd0ea0f8b..510cf3c71 100644
--- a/xmake/actions/build/xmake.lua
+++ b/xmake/actions/build/xmake.lua
@@ -46,12 +46,12 @@ task("build")
, {'j', "jobs", "kv", "4", "Specifies the number of jobs to build simultaneously." }
, {'w', "warning", "k", false, "Enable the warnings output." }
, {'t', "try", "k", false, "Try building project using third-party buildsystem." }
- , {'f', "files", "kv", nil, "Build the given source files.",
+ , {nil, "files", "kv", nil, "Build the given source files.",
"e.g. ",
" - xmake --files=src/main.c",
" - xmake --files='src/*.c' [target]",
" - xmake --files='src/**c|excluded_file.c'",
- " - xmake -f 'src/main.c" .. path.envsep() .. "src/test.c'" }
+ " - xmake --files='src/main.c" .. path.envsep() .. "src/test.c'" }
, {}
, {nil, "target", "v", nil, "Build the given target." }