mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-05-16 11:38:11 +08:00
182a07ef58
Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
14 lines
286 B
Python
14 lines
286 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend(['RT_USING_SMART','RT_UTEST_TMPFS_CP']):
|
|
src += ['tmpfs.c']
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|