xmake-targets

Installation
SKILL.md

Xmake Targets

A target is a unit of build output. Every buildable artifact lives inside target("name") ... target_end() (or just the indented block until the next top-level call).

Kinds

target("app")
    set_kind("binary")     -- executable
target("mylib")
    set_kind("static")     -- .a / .lib
target("mydyn")
    set_kind("shared")     -- .so / .dll / .dylib
target("headeronly")
    set_kind("headeronly") -- no compilation, just install headers

Sources and headers

Installs
5
GitHub Stars
16
First Seen
Apr 29, 2026
xmake-targets — xmake-io/xmake-skills