mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-20 18:05:54 +08:00
20 lines
646 B
Lua
20 lines
646 B
Lua
local TARGET_NAME = "example_otp"
|
|
local LIB_DIR = "$(buildir)/".. TARGET_NAME .. "/"
|
|
local LIB_NAME = "lib" .. TARGET_NAME .. ".a "
|
|
|
|
target(TARGET_NAME)
|
|
set_kind("static")
|
|
set_targetdir(LIB_DIR)
|
|
|
|
--加入代码和头文件
|
|
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() |