chinesebear add bsp & libcpu

This commit is contained in:
chinesebear
2015-07-09 07:38:07 +08:00
parent dee31a7103
commit 4ad1b35537
25 changed files with 2748 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
# remove no need file.
if GetDepend('RT_USING_RTGUI') == False:
SrcRemove(src, 'display_controller.c')
CPPPATH = [cwd]
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
Return('group')