summaryrefslogtreecommitdiff
path: root/xmake/actions/build/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2024-01-25 23:01:17 +0800
committerruki <[email protected]>2024-01-25 23:01:17 +0800
commit37ea03445cb35ed3f3966f3433211451175eead1 (patch)
treee93a8fe542959be3aa5f7d4088d0f97b99c892bd /xmake/actions/build/xmake.lua
parentef5cf74c8e31fbda01b75187e6c934331ad46009 (diff)
use build warnings policy
Diffstat (limited to 'xmake/actions/build/xmake.lua')
-rw-r--r--xmake/actions/build/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/build/xmake.lua b/xmake/actions/build/xmake.lua
index 6f54fb69e..61174105c 100644
--- a/xmake/actions/build/xmake.lua
+++ b/xmake/actions/build/xmake.lua
@@ -42,7 +42,7 @@ task("build")
, {'j', "jobs", "kv", tostring(os.default_njob()),
"Set the number of parallel compilation jobs." }
, {nil, "linkjobs", "kv", nil, "Set the number of parallel link jobs." }
- , {'w', "warning", "k", false , "Enable the warnings output." }
+ , {'w', "warning", "k", false , "Enable the warnings output. (deprecated)" }
, {nil, "files", "kv", nil , "Build the given source files.",
"e.g. ",
" - xmake --files=src/main.c",