Files
Momentum-Firmware/lib/SConscript
Willy-JL b7220237de Small bump in the road
- Update assets and references for new project
- Revert DFU image and CLI motd
- Remove NSFW text and flag
- Remove credits animation (will be replaced with a setting menu soon)
- New EvilPortal example HTML and better error message
- Initial standalone naming for asset packs and mainmenu apps
- File migration fixes/improvements
- Remove hotfix workflow
2024-03-01 06:11:16 +00:00

54 lines
920 B
Python

Import("env")
env.Append(
CPPPATH=[
"#/",
"#/lib", # TODO FL-3553: remove!
# Ugly hack
Dir("../assets/compiled"),
Dir("../../icons"),
],
)
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",
"momentum",
"heatshrink",
"ble_profile",
"bit_lib",
"datetime",
],
)
Return("libs")