19 lines
400 B
Python
19 lines
400 B
Python
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
group = []
|
|
CPPPATH = []
|
|
|
|
if rtconfig.CROSS_TOOL == 'iar':
|
|
print("\nThe current project does not support iar build\n")
|
|
Return('group')
|
|
elif rtconfig.CROSS_TOOL == 'gcc':
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd, ]
|
|
|
|
group = DefineGroup('ra_gen', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|