mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-29 16:20:01 +00:00
22 lines
392 B
Python
22 lines
392 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
LINT_SOURCES=[Dir(".")],
|
|
)
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="flipper${TARGET_HW}")
|
|
libenv.Append(
|
|
CPPPATH=[
|
|
"#/lib/stm32wb_copro/wpan/interface/patterns/ble_thread/tl",
|
|
]
|
|
)
|
|
libenv.ApplyLibFlags()
|
|
|
|
|
|
lib = libenv.StaticLibrary(
|
|
"${FW_LIB_NAME}",
|
|
env.get("TARGET_CFG").gatherSources(),
|
|
)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|