summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/csharp/static/xmake.lua
blob: 51bce92a09144a7921fd0acdf0ddae29fabbbcd1 (plain)
1
2
3
4
5
6
7
8
9
10
target("foo")
    set_kind("static")
    add_files("src/foo.cs")

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

${FAQ}