4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 23:09:36 +08:00
2014-09-21 21:45:36 +08:00

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')