mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 23:45:07 +00:00
19 lines
307 B
Python
19 lines
307 B
Python
|
#
|
||
|
# Copyright (c) 2021, RT-Thread Development Team
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
#
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('iwasm_entry', src, depend = ['PKG_USING_WAMR'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|