mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 02:58:26 +08:00
16 lines
331 B
Python
16 lines
331 B
Python
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'))
|
|
|
|
|