forked from bytecodealliance/wasm-micro-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSConscript
More file actions
33 lines (23 loc) · 684 Bytes
/
SConscript
File metadata and controls
33 lines (23 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (c) 2021, RT-Thread Development Team
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
from building import *
import os
cwd = GetCurrentDir()
src = Split('''
''')
def addSrcFiles(arr, path):
for f in os.listdir(path):
fpath = os.path.join(path, f);
if os.path.isfile(fpath):
ext = os.path.splitext(fpath)[-1]
if ext == '.c' or ext == '.cpp':
arr += [fpath]
elif os.path.isdir(fpath):
addSrcFiles(arr, fpath)
addSrcFiles(src, cwd);
CPPPATH = [cwd, cwd+'/../include']
group = DefineGroup('iwasm_platform_core', src, depend = [''], CPPPATH = CPPPATH)
Return('group')