9 lines
153 B
Python
9 lines
153 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split('board.c')
|
|
|
|
group = DefineGroup('Board', src, depend = [''], CPPPATH = [cwd])
|
|
|
|
Return('group')
|