【更新】components/utilities/utest 增加 SConscript depend

Signed-off-by: MurphyZhao <d2014zjt@163.com>
This commit is contained in:
MurphyZhao 2018-12-05 18:06:33 +08:00
parent 1ecf6cbc7c
commit 0759b66eb9
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('utest', src, depend = [], CPPPATH = CPPPATH)
group = DefineGroup('utest', src, depend = ['RT_USING_UTEST'], CPPPATH = CPPPATH)
Return('group')