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

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

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

${FAQ}