summaryrefslogtreecommitdiff
path: root/xmake/repository/templates/objc/console/xmake.lua
blob: 37c01442a6a3d0c5e4711656a85b43209c29bc66 (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("${TARGET_NAME}")

    -- set kind
    set_kind("binary")

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

${FAQ}