mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
19 lines
355 B
Plaintext
19 lines
355 B
Plaintext
|
|
Import("env")
|
||
|
|
|
||
|
|
env.Append(
|
||
|
|
CPPPATH=[
|
||
|
|
"#/lib/mbedtls",
|
||
|
|
"#/lib/mbedtls/include",
|
||
|
|
],
|
||
|
|
)
|
||
|
|
|
||
|
|
|
||
|
|
libenv = env.Clone(FW_LIB_NAME="mbedtls")
|
||
|
|
libenv.ApplyLibFlags()
|
||
|
|
|
||
|
|
sources = ["mbedtls/library/des.c", "mbedtls/library/platform_util.c"]
|
||
|
|
|
||
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
||
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
||
|
|
Return("lib")
|