Add SConscript for can

This commit is contained in:
Aubr.Cool 2015-05-15 08:00:14 +08:00
parent 8e29e3d98b
commit c7d703158a
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd + '/../include']
group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_CAN'], CPPPATH = CPPPATH)
Return('group')