mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-24 14:47:37 +08:00
16 lines
265 B
Python
16 lines
265 B
Python
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Split('''
|
||
|
''')
|
||
|
|
||
|
if GetDepend(['UTEST_MEMHEAP_TC']):
|
||
|
src += ['memheap_tc.c']
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('utestcases', src, depend = [], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|