4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 01:33:31 +08:00
2020-08-07 21:43:06 +08:00

12 lines
253 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
define = ['USE_APP_CONFIG']
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH,CPPDEFINES = define)
Return('group')