mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
29 lines
556 B
Python
29 lines
556 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/flipper_format",
|
|
],
|
|
SDK_HEADERS=[
|
|
File("#/lib/flipper_format/flipper_format.h"),
|
|
File("#/lib/flipper_format/flipper_format_i.h"),
|
|
],
|
|
)
|
|
|
|
|
|
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")
|