mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 03:39:22 +08:00
15 lines
245 B
Python
15 lines
245 B
Python
|
import rtconfig
|
||
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
# get current directory
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Glob('src/*.c')
|
||
|
|
||
|
path = [cwd + '/inc']
|
||
|
|
||
|
group = DefineGroup('StdPeriph_Driver', src, depend = [''], CPPPATH = path)
|
||
|
|
||
|
Return('group')
|