summaryrefslogtreecommitdiff
path: root/tests/plugins/show/xmake.lua
blob: 15344a72a37827afd8f5dfcd7f3029d0ba886897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
add_rules("mode.debug", "mode.release")

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

target("ui")
    set_kind("static")
    add_deps("core")
    add_files("src/ui.c")

target("ext::net")
    set_kind("static")
    add_deps("core")
    add_files("src/net.c")

target("app")
    set_kind("binary")
    add_deps("core", "ui", "ext::net")
    add_files("src/main.c")