mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 08:53:31 +08:00
15 lines
211 B
Python
15 lines
211 B
Python
|
|
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = []
|
|
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Drivers', src, depend = ['BSP_USING_WIFI'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|