forked from flipperdevices/flipperzero-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSConscript
49 lines (44 loc) · 807 Bytes
/
SConscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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",
],
)
Return("libs")