summaryrefslogtreecommitdiff
path: root/tests/projects/objc/framework/xmake.lua
blob: 2e1de864c8a44844815caedceba782ad6bf209da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_rules("mode.debug", "mode.release")
add_frameworks("Foundation", "CoreFoundation")

if is_os("macosx", "ios") then
    add_mxflags("-fobjc-arc")
end

target("test")
    set_kind("shared")
    add_files("src/test.m")

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