1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00
Files
unleashed-firmware/lib/SConscript
2024-07-10 16:51:19 +01:00

52 lines
847 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",
"littlefs",
"subghz",
"nfc",
"digital_signal",
"pulse_reader",
"signal_reader",
"appframe",
"u8g2",
"lfrfid",
"flipper_application",
"music_worker",
"mjs",
"nanopb",
"update_util",
"heatshrink",
"ble_profile",
"bit_lib",
"datetime",
],
)
Return("libs")