Files

16 lines
346 B
Python
Raw Permalink Normal View History

2025-09-30 11:56:06 +08:00
import os
import platform
env=DefaultEnvironment().Clone()
LIB_DIR=os.environ['LIB_DIR'];
SOURCES = Glob('library/*.c') + [
"3rdparty/everest/library/everest.c",
"3rdparty/everest/library/x25519.c",
"3rdparty/everest/library/Hacl_Curve25519_joined.c"
]
env.Library(os.path.join(LIB_DIR, 'mbedtls'), Glob('library/*.c'))