xmake-kotlin

Installation
SKILL.md

Building Kotlin (Native) with Xmake

Xmake's Kotlin support targets Kotlin/Native — the ahead-of-time-compiled flavor, not JVM. For JVM-side projects, use Gradle/Maven directly.

1. Minimal project

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

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