xmake-commands
Installation
SKILL.md
Xmake Commands
Xmake's CLI is a single xmake binary with subcommands. Without a subcommand it runs build.
Configure (xmake f / xmake config)
xmake f -m release # build mode
xmake f -p linux -a x86_64 # platform + arch
xmake f --toolchain=clang
xmake f -c # clear old config
xmake f --menu # interactive TUI (shows all options)
xmake f -v # verbose
Config is persisted under .xmake/, so later xmake calls reuse it.