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

target("test")
    add_rules("xcode.framework")
    add_files("src/test.m")
    add_headerfiles("src/*.h")
    add_installfiles("src/Info.plist")
    --set_values("xcode.codesign_identity", "Apple Development: [email protected] (T3NA4MRVPU)")

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