添加 Sharelib root scons 配置文件示例

Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
2021-09-13 11:08:05 +08:00
parent a2651f7fb1
commit 6923e908e8

View File

@@ -0,0 +1,18 @@
# for package compiling
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
CPPPATH = [cwd]
Import('SHARE_LIB_HANDLE')
for d in list:
if SHARE_LIB_HANDLE.is_this_lib(d):
continue
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')