summaryrefslogtreecommitdiff
path: root/tests/projects/kotlin-native/static_library/xmake.lua
blob: 646cb2e5d88a2fac385529d35640ffb2d28c4610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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("test")
    set_kind("binary")
    add_files("src/main.c")
    add_deps("foo")