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.
30 lines
791 B
30 lines
791 B
12 months ago
|
# RT-Thread building script for component
|
||
|
|
||
|
Import('rtconfig')
|
||
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Glob('peri_driver/*/*.c')
|
||
|
src += Glob('common/board/*.c')
|
||
|
src += Glob('common/chip/*.c')
|
||
|
|
||
|
# add for startup script
|
||
|
if rtconfig.PLATFORM in ['gcc']:
|
||
|
print("not gcc startup file")
|
||
|
exit(0)
|
||
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
||
|
src += [cwd + '/common/startup/keil_startup_lpc82x.s']
|
||
|
elif rtconfig.PLATFORM in ['iccarm']:
|
||
|
src += [cwd + '/common/startup/iar_startup_lpc82x.s']
|
||
|
|
||
|
CPPPATH = [ cwd + '/peri_driver', cwd + '/common/board',
|
||
|
cwd + '/common/chip', cwd + '/common/CMSIS']
|
||
|
|
||
|
CPPDEFINES = ['CORE_M0PLUS']
|
||
|
|
||
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES)
|
||
|
|
||
|
Return('group')
|