xmake-swift

Installation
SKILL.md

Building Swift with Xmake

Xmake builds Swift through swiftc and integrates with Xcode on Apple platforms. Use it when you want the same xmake.lua to drive a project that mixes Swift with C/C++/Objective-C.

1. Minimal project

xmake create -l swift -t console hello
cd hello
xmake run
add_rules("mode.debug", "mode.release")

target("hello")
    set_kind("binary")
    add_files("src/*.swift")
Installs
3
GitHub Stars
16
First Seen
May 8, 2026
xmake-swift — xmake-io/xmake-skills