summaryrefslogtreecommitdiff
path: root/xmake/templates/kotlin/static/xmake.lua
blob: 6095dbe932e4f76abd8677057b20244f9f42053d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
add_rules("mode.debug", "mode.release")
add_requires("kotlin-native")
target("foo")
    set_kind("static")
    add_files("src/foo.kt")
    set_toolchains("@kotlin-native")

target("${TARGET_NAME}")
    set_kind("binary")
    add_files("src/main.c")
    add_deps("foo")

${FAQ}