mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-21 02:15:55 +08:00
10 lines
345 B
Lua
10 lines
345 B
Lua
target("luatos_lwip_socket")
|
|
local LIB_DIR = "$(buildir)/luatos_lwip_socket/"
|
|
set_kind("static")
|
|
set_targetdir(LIB_DIR)
|
|
|
|
--加入代码和头文件
|
|
add_includedirs("./include",{public = true})
|
|
add_files("./**.c",{public = true})
|
|
LIB_USER = LIB_USER .. SDK_TOP .. LIB_DIR .. "libluatos_lwip_socket.a "
|
|
target_end() |