summaryrefslogtreecommitdiff
path: root/tests/projects/other/multiplats_xcode/xmake.lua
blob: e8fbbb37291505aac9985cfe9106f3f1620a357b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_rules("mode.debug", "mode.release")
target("test_host")
    set_kind("binary")
    add_files("src/*.c")

target("test_iphoneos")
    set_kind("binary")
    add_files("src/*.c")
    set_plat("iphoneos")

target("test_iphoneos_armv7")
    set_kind("binary")
    add_files("src/*.c")
    set_plat("iphoneos")
    set_arch("armv7")