summaryrefslogtreecommitdiff
path: root/xmake/templates/kotlin/console/project/xmake.lua
blob: 2689995b1f2ce819e466102a1f564dfefc3d12da (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")

add_requires("kotlin-native")

target("${TARGETNAME}")
    set_kind("binary")
    add_files("src/main.kt")
    set_toolchains("@kotlin-native")

${FAQ}