mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-29 10:29:59 +00:00
28 lines
514 B
Plaintext
28 lines
514 B
Plaintext
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/mlib",
|
|
],
|
|
SDK_HEADERS=[
|
|
*(
|
|
File(f"#/lib/mlib/m-{name}.h")
|
|
for name in (
|
|
"algo",
|
|
"array",
|
|
"bptree",
|
|
"core",
|
|
"deque",
|
|
"dict",
|
|
"list",
|
|
"rbtree",
|
|
"tuple",
|
|
"variant",
|
|
)
|
|
),
|
|
],
|
|
CPPDEFINES=[
|
|
'"M_MEMORY_FULL(x)=abort()"',
|
|
],
|
|
)
|