summaryrefslogtreecommitdiff
path: root/xmake/templates/dlang/console/project/xmake.lua
blob: de662d1b42eac8212b67a60c2e4cadf69165ac87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

-- add modes: debug and release 
add_rules("mode.debug", "mode.release")

-- add target
target("[targetname]")

    -- set kind
    set_kind("binary")

    -- add files
    add_files("src/*.d")