mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-21 02:15:55 +08:00
22 lines
677 B
Lua
22 lines
677 B
Lua
local TARGET_NAME = "example_kv"
|
|
local LIB_DIR = "$(buildir)/".. TARGET_NAME .. "/"
|
|
local LIB_NAME = "lib" .. TARGET_NAME .. ".a "
|
|
|
|
target(TARGET_NAME)
|
|
set_kind("static")
|
|
set_targetdir(LIB_DIR)
|
|
|
|
add_defines("LUAT_USE_KV")
|
|
|
|
--加入代码和头文件
|
|
add_includedirs("./inc",{public = true})
|
|
add_files("./src/*.c",{public = true})
|
|
|
|
--add_files("../../thirdparty/fal/src/*.c",{public = true})
|
|
--add_files("../../thirdparty/flashdb/src/*.c",{public = true})
|
|
|
|
--可以继续增加add_includedirs和add_files
|
|
--自动链接
|
|
LIB_USER = LIB_USER .. SDK_TOP .. LIB_DIR .. LIB_NAME .. " "
|
|
--甚至可以加入自己的库
|
|
target_end() |