diff options
| author | ruki <[email protected]> | 2026-04-18 22:11:17 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-04-20 09:35:37 +0800 |
| commit | 4e94d5537ac3673c353942d58535212968836d6d (patch) | |
| tree | d8c63e3c6743df3e5247e315d5e2ebc3c316ad6a /tests/plugins/show/xmake.lua | |
| parent | ad3d0090c4b6184157321a01e814be622b37edd7 (diff) | |
improve show test
Diffstat (limited to 'tests/plugins/show/xmake.lua')
| -rw-r--r-- | tests/plugins/show/xmake.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/plugins/show/xmake.lua b/tests/plugins/show/xmake.lua index 7077424f3..15344a72a 100644 --- a/tests/plugins/show/xmake.lua +++ b/tests/plugins/show/xmake.lua @@ -9,7 +9,12 @@ target("ui") 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") + add_deps("core", "ui", "ext::net") add_files("src/main.c") |
