mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 06:50:21 +00:00
25 lines
419 B
Python
25 lines
419 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/flipper_format",
|
|
],
|
|
)
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="flipperformat")
|
|
libenv.ApplyLibFlags()
|
|
|
|
if libenv["RAM_EXEC"]:
|
|
libenv.Append(
|
|
CPPDEFINES=[
|
|
"FLIPPER_STREAM_LITE",
|
|
],
|
|
)
|
|
|
|
|
|
sources = libenv.GlobRecursive("*.c")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|