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

target("${TARGETNAME}")
    set_kind("static")
    add_files("src/interfaces.d")
    add_includedirs("src", {public = true})

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

${FAQ}