wamrx-sys 0.2.0

Raw FFI bindings to the WebAssembly Micro Runtime (WAMR) fast interpreter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Copyright (c) 2021, RT-Thread Development Team
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#

from building import *
import os

cwd     = GetCurrentDir()

src = Glob('*.c')
CPPPATH = [cwd]

group = DefineGroup('iwasm_shared_utils', src, depend = [''], CPPPATH = CPPPATH)

Return('group')