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

target("module")
    set_kind("static")
    add_files("src/test/*.go")

target("${TARGETNAME}_demo")
    set_kind("binary")
    add_deps("module")
    add_files("src/*.go")

${FAQ}