SConscript 885 字节
Newer Older
W
wangyq2018 已提交
1 2 3 4 5 6 7 8 9 10 11 12
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')

W
wangyq2018 已提交
13
#add for startup script
W
wangyq2018 已提交
14 15 16 17 18
if rtconfig.CROSS_TOOL == 'gcc':
     src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/gcc/startup_es32f065x.s']
elif rtconfig.CROSS_TOOL == 'keil':
     src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/keil/startup_es32f065x.s']
elif rtconfig.CROSS_TOOL == 'iar':
W
wangyq2018 已提交
19
     src = src + ['CMSIS/Device/EastSoft/ES32F065x/Startup/iar/startup_es32f065x.s']
W
wangyq2018 已提交
20

W
wangyq2018 已提交
21 22 23
path = [cwd + '/CMSIS/Device/EastSoft/ES32F065x/Include',
        cwd + '/CMSIS/Include',
        cwd + '/ES32F065x_ALD_StdPeriph_Driver/Include']
W
wangyq2018 已提交
24

25
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = ['ES32F065x'])
W
wangyq2018 已提交
26 27

Return('group')