diff options
| author | ruki <[email protected]> | 2025-01-09 00:40:54 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-01-09 00:40:54 +0800 |
| commit | 26921bb868f343d82c08fcc3f4decccec5b89c45 (patch) | |
| tree | 40a49944182a204b4c1f5fdc4dee19d6cfb1d803 /core/xmake.lua | |
| parent | 34a6d0e15e298c6ed7340013b7570a0c97058c80 (diff) | |
use tbox namespace
Diffstat (limited to 'core/xmake.lua')
| -rw-r--r-- | core/xmake.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/xmake.lua b/core/xmake.lua index 0d282dcdf..f27461f54 100644 --- a/core/xmake.lua +++ b/core/xmake.lua @@ -131,7 +131,14 @@ if is_plat("windows") then end -- add projects -includes("src/sv", "src/lz4", "src/tbox", "src/xmake", "src/cli") +includes("src/sv", "src/lz4", "src/xmake", "src/cli") +if false then --namespace then + namespace("tbox", function () + includes("src/tbox") + end) +else + includes("src/tbox") +end if has_config("lua_cjson") then includes("src/lua-cjson") end |
