14 lines
224 B
Python
Executable File
14 lines
224 B
Python
Executable File
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
|
|
src = []
|
|
|
|
if GetDepend(['RT_USING_RESET']):
|
|
src += ['reset.c']
|
|
|
|
group = DefineGroup('DeviceDrivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|