summaryrefslogtreecommitdiff
path: root/xmake/actions/config/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/actions/config/xmake.lua')
-rw-r--r--xmake/actions/config/xmake.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/actions/config/xmake.lua b/xmake/actions/config/xmake.lua
index 67d0af595..3b81d88b6 100644
--- a/xmake/actions/config/xmake.lua
+++ b/xmake/actions/config/xmake.lua
@@ -210,14 +210,15 @@ task("config")
{category = "Other Configuration"},
{nil, "debugger", "kv", "auto" , "Set debugger"},
{nil, "ccache", "kv", true , "Enable or disable the c/c++ compiler cache."},
- {nil, "trybuild", "kv", nil , "Enable try-build mode and set the third-party buildsystem tool.",
+ {nil, "ccachedir", "kv", nil , "Set the ccache directory."},
+ {nil, "trybuild", "kv", nil , "Enable try-build mode and set the third-party buildsystem tool.",
"e.g.",
" - xmake f --trybuild=auto; xmake",
" - xmake f --trybuild=autotools -p android --ndk=xxx; xmake",
"",
"the third-party buildsystems:"
, values = {"auto", "make", "autotools", "cmake", "scons", "meson", "bazel", "ninja", "msbuild", "xcodebuild", "ndkbuild"}},
- {nil, "tryconfigs", "kv", nil , "Set the extra configurations of the third-party buildsystem for the try-build mode.",
+ {nil, "tryconfigs", "kv", nil , "Set the extra configurations of the third-party buildsystem for the try-build mode.",
"e.g.",
" - xmake f --trybuild=autotools --tryconfigs='--enable-shared=no'"},
{'o', "buildir", "kv", "build" , "Set build directory."},