12 lines
202 B
Python
12 lines
202 B
Python
|
from building import *
|
||
|
import rtconfig
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('partition', src, depend = ['BSP_USING_SDMMC'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|