rt-thread-official/examples/utest/testcases/smp_call/SConscript

14 lines
290 B
Python
Raw Normal View History

2024-08-29 16:21:19 +08:00
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = []
CPPPATH = [cwd]
if GetDepend(['RT_USING_SMP', 'UTEST_SMP_CALL_FUNC']):
src += Glob('smp*.c')
2024-08-29 16:21:19 +08:00
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
Return('group')