添加 Sharelib root scons 配置文件示例
Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
18
examples/ShareLibRootSconscript
Normal file
18
examples/ShareLibRootSconscript
Normal 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')
|
Reference in New Issue
Block a user