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