Files
Flipper-ARF/lib/SConscript
T
d4rks1d33 d899856167
Build Dev Firmware / build (push) Canceled after 0s
oh no..2
2026-09-18 02:54:47 +00:00

52 lines
991 B
Python

Import("env")
env.Append(
CPPPATH=[
"#/",
"#/lib",
# Ugly hack
Dir("../assets/compiled"),
],
SDK_HEADERS=[
File("../applications/services/applications.h"),
],
)
libs = env.BuildModules(
[
"mlib",
"stm32wb",
"freertos",
"print",
"microtar",
"mbedtls",
"toolbox",
"libusb_stm32",
"drivers",
"fatfs",
"flipper_format",
"infrared",
"subghz",
# nfc removed from the firmware to free internal flash for the full
# SubGHz protocol catalog. NFC ships as external app(s).
"digital_signal",
"pulse_reader",
"signal_reader",
"u8g2",
"lfrfid",
"flipper_application",
"music_worker",
"nanopb",
"update_util",
"heatshrink",
"ble_profile",
"bit_lib",
"datetime",
"ieee754_parse_wrap",
],
)
Return("libs")