34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
import rtconfig
|
|
from building import *
|
|
|
|
# get current directory
|
|
cwd = GetCurrentDir()
|
|
|
|
# The set of source files associated with this SConscript file.
|
|
|
|
src = Glob('GD32F10x_standard_peripheral/Source/*.c')
|
|
src += [cwd + '/CMSIS/GD/GD32F10x/Source/system_gd32f10x.c']
|
|
|
|
#add for startup script
|
|
if rtconfig.PLATFORM in ['gcc']:
|
|
src += [cwd + '/CMSIS/GD/GD32F10x/Source/GCC/startup_gd32f10x_cl.S']
|
|
elif rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
src += [cwd + '/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_cl.s']
|
|
elif rtconfig.PLATFORM in ['iccarm']:
|
|
src += [cwd + '/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_cl.s']
|
|
|
|
path = [
|
|
cwd + '/CMSIS/GD/GD32F10x/Include',
|
|
cwd + '/CMSIS',
|
|
cwd + '/GD32F10x_standard_peripheral/Include',]
|
|
|
|
if GetDepend(['RT_USING_BSP_USB']):
|
|
path += [cwd + '/GD32F10x_usbfs_driver/Include']
|
|
src += [cwd + '/GD32F10x_usbfs_driver/Source']
|
|
|
|
CPPDEFINES = ['USE_STDPERIPH_DRIVER', 'GD32F10X_CL']
|
|
|
|
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|