rt-thread-official/components/drivers/smp_call/SConscript

11 lines
208 B
Python
Raw Normal View History

2024-08-29 10:12:47 +08:00
from building import *
cwd = GetCurrentDir()
src = []
if GetDepend("RT_USING_SMP"):
src += Glob('*.c')
CPPPATH = [cwd]
2024-09-12 18:25:10 +08:00
group = DefineGroup('smp', src, depend = [''], CPPPATH = CPPPATH)
2024-08-29 10:12:47 +08:00
Return('group')