summaryrefslogtreecommitdiff
path: root/tests/projects/c/static library with spaces/xmake.lua
blob: ac93d8441efc50bf2c8564958cc08bc301a24c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_rules("mode.release", "mode.debug")

target("test")
    set_kind("static")
    add_files("s r c/interface.c")
    add_sysincludedirs("$(projectdir)/i n c", {public = true})

target("demo")
    set_kind("binary")
    add_deps("test")
    add_files("s r c/test.c")
    set_pcheader("$(projectdir)/i n c/stdafx.h")