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

-- 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/*.cpp")

${FAQ}