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.
28 lines
901 B
28 lines
901 B
10 months ago
|
import rtconfig
|
||
|
Import('RTT_ROOT')
|
||
|
from building import *
|
||
|
|
||
|
# get current directory
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
# The set of source files associated with this SConscript file.
|
||
|
src = []
|
||
|
|
||
|
src += Glob('ES32F065x_ALD_StdPeriph_Driver/Source/*.c')
|
||
|
|
||
|
#add for startup script
|
||
|
if rtconfig.PLATFORM in ['gcc']:
|
||
|
src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/gcc/startup_es32f065x.s']
|
||
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
||
|
src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/keil/startup_es32f065x.s']
|
||
|
elif rtconfig.PLATFORM in ['iccarm']:
|
||
|
src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/iar/startup_es32f065x.s']
|
||
|
|
||
|
path = [cwd + '/CMSIS/Device/EastSoft/ES32F065x/Include',
|
||
|
cwd + '/CMSIS/Include',
|
||
|
cwd + '/ES32F065x_ALD_StdPeriph_Driver/Include']
|
||
|
|
||
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = ['ES32F065x'])
|
||
|
|
||
|
Return('group')
|