4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-22 02:55:20 +08:00

【更新】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

View File

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