diff options
| -rw-r--r-- | xmake/actions/build/xmake.lua | 4 |
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." } |
