summaryrefslogtreecommitdiff
path: root/xmake/templates/go/static/project/xmake.lua
blob: 076ac64608f0396b18bec8d94d64a55362bb1977 (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/module/*.go")

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

${FAQ}