1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 12:51:22 +04:00
Files
flipperzero-firmware/lib/flipper_format/SConscript

31 lines
555 B
Python
Raw Normal View History

Import("env")
env.Append(
CPPPATH=[
"#/lib/flipper_format",
],
SDK_HEADERS=[
File("flipper_format.h"),
File("flipper_format_i.h"),
File("flipper_format_stream.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")