1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00
Files
unleashed-firmware/lib/SConscript
2025-03-31 08:24:27 +04:00

51 lines
837 B
Python

Import("env")
env.Append(
CPPPATH=[
"#/",
"#/lib",
# Ugly hack
Dir("../assets/compiled"),
],
)
libs = env.BuildModules(
[
"mlib",
"stm32wb",
"freertos",
"print",
"microtar",
"mbedtls",
"toolbox",
"libusb_stm32",
"drivers",
"fatfs",
"flipper_format",
"one_wire",
"ibutton",
"infrared",
"subghz",
"nfc",
"digital_signal",
"pulse_reader",
"signal_reader",
"u8g2",
"lfrfid",
"flipper_application",
"music_worker",
"mjs",
"nanopb",
"update_util",
"heatshrink",
"ble_profile",
"bit_lib",
"datetime",
"ieee754_parse_wrap",
],
)
Return("libs")