summaryrefslogtreecommitdiff
path: root/xmake/templates/objc++/console/project/xmake.lua
blob: f991205967b8d5af3792c9967bd9417534279ad3 (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/*.mm")

${FAQ}