2022-04-21 14:35:11 +08:00

14 lines
237 B
Python

Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Split('''
thread_tc.cpp
''')
CPPPATH = [cwd]
group = DefineGroup('utestcases', src, depend = ['UTEST_CPP11_THREAD_TC'], CPPPATH = CPPPATH)
Return('group')