summaryrefslogtreecommitdiff
path: root/tests/projects/c/cosmocc/static_library/xmake.lua
blob: 73d0a681df050a3eb55f552831c27188e07d06b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_rules("mode.release", "mode.debug")

add_requires("cosmocc")
set_toolchains("@cosmocc")

target("foo")
    set_kind("static")
    add_files("src/foo.c")

target("demo")
    set_kind("binary")
    add_deps("foo")
    add_files("src/main.c")