mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 08:39:23 +08:00
be7bd6b5d7
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1950 bbd45198-f89e-11dd-88c7-29a3b14d5316
14 lines
266 B
Python
14 lines
266 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = os.path.join(str(Dir('#')), 'drivers')
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd, cwd + '/include']
|
|
|
|
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|