summaryrefslogtreecommitdiff
path: root/tests/projects/dlang/static_library/xmake.lua
blob: 2734624750c8a961c325c0028a996bbaa974b91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
add_rules("mode.debug", "mode.release")

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

target("test")
    set_kind("binary")
    add_deps("interfaces")
    add_files("src/main.d")