summaryrefslogtreecommitdiff
path: root/tests/projects/objc/bundle/xmake.lua
blob: e8d0738ce522f2cdc6a34f6b1e8ef9cc53a2ee1d (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")

target("test")
    add_rules("xcode.bundle")
    add_files("src/test.m")

target("demo")
    set_kind("binary")
    add_deps("test")
    add_files("src/main.m")