You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
280 B
13 lines
280 B
10 months ago
|
import rtconfig
|
||
|
from building import *
|
||
|
|
||
|
if rtconfig.EFM32_BOARD == 'EFM32_GXXX_DK':
|
||
|
src = Glob('*.c')
|
||
|
CPPPATH = [GetCurrentDir()]
|
||
|
|
||
|
group = DefineGroup('EFM32_GXXX_DK', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
Return('group')
|
||
|
else:
|
||
|
empty = []
|
||
|
Return('empty')
|