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

target("test")
    add_rules("xcode.framework")
    add_files("src/framework/test.m")
    add_files("src/framework/Info.plist")
    add_headerfiles("src/framework/test.h")

target("demo")
    add_rules("xcode.application")
    add_deps("test")
    add_files("src/app/*.m")
    add_files("src/app/Info.plist")