add porting codes of rt-thread (#494)
This commit is contained in:
32
core/shared/utils/uncommon/SConscript
Normal file
32
core/shared/utils/uncommon/SConscript
Normal file
@ -0,0 +1,32 @@
|
||||
#
|
||||
# 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)
|
||||
|
||||
src = Glob('*.c')
|
||||
src += Glob('*.cpp')
|
||||
CPPPATH = [cwd]
|
||||
|
||||
group = DefineGroup('iwasm_shared_utils_uncommon', src, depend = [''], CPPPATH = CPPPATH)
|
||||
|
||||
Return('group')
|
||||
Reference in New Issue
Block a user