summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/go/static/xmake.lua
blob: 4391d77992134388235117fef0b85f5d051a8b15 (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("${TARGET_NAME}_demo")
    set_kind("binary")
    add_deps("module")
    add_files("src/*.go")

${FAQ}