Files
rt-thread/examples/utest/testcases/cpp11/SConscript
2025-10-15 09:43:16 +08:00

15 lines
299 B
Python

Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = [cwd]
if GetDepend('RT_UTEST_CPP11_THREAD'):
src += Glob('tc_*.cpp')
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES', 'RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
Return('group')