15 lines
208 B
Python
15 lines
208 B
Python
|
|
||
|
from building import *
|
||
|
import rtconfig
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = []
|
||
|
|
||
|
src += Glob('*.c')
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
group = DefineGroup('wifi', src, depend = ['BSP_USING_WIFI'], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|