mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
3d7cd57371
Co-authored-by: あく <alleteam@gmail.com>
51 lines
847 B
Python
51 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")
|