summaryrefslogtreecommitdiff
path: root/tests/projects/nim/console_with_c/xmake.lua
blob: c2d067cd6a968925e85f8c518bc5345ecbaa68be (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")

target("foo")
    set_kind("static")
    add_files("src/*.c")

target("test")
    set_kind("binary")
    add_deps("foo")
    add_files("src/main.nim")