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

target("${TARGET_NAME}")
    set_kind("static")
    add_files("src/test.zig")

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

${FAQ}