summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/nim/static/xmake.lua
blob: 3f2cb7dfcf2e823f3822440fd3a0142ac1318a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_rules("mode.debug", "mode.release")

target("${TARGET_NAME}")
    set_kind("static")
    add_files("src/foo.nim")

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

${FAQ}