rt-thread-official/bsp/yichip/yc3121-pos/Libraries/SConscript

18 lines
504 B
Python

from building import *
import rtconfig
cwd = GetCurrentDir()
src = Glob('sdk/*.c')
CPPPATH = [cwd + '/sdk', cwd + '/core', cwd]
src += Glob('core/*.c')
if rtconfig.PLATFORM in ['gcc']:
src += ['startup/flash_start_gcc.s']
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
src += ['startup/startup.s', 'startup/flash_start.s']
elif rtconfig.PLATFORM in ['iccarm']:
src += ['startup/flash_start_iar.s']
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH)
Return('group')