11 lines
208 B
Python
11 lines
208 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
if GetDepend("RT_USING_SMP"):
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('smp', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|