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

add_requires("kotlin-native")

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

${FAQ}