rt-thread-official/bsp/renesas/ra6m3-hmi-board/ra/SConscript

32 lines
1.1 KiB
Python
Raw Normal View History

2023-04-19 14:01:34 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
from gcc import *
2023-04-19 14:01:34 +08:00
cwd = GetCurrentDir()
src = []
group = []
CPPPATH = []
if rtconfig.PLATFORM in ['iccarm']:
print("\nThe current project does not support IAR build\n")
Return('group')
elif rtconfig.PLATFORM in GetGCCLikePLATFORM():
2023-04-19 14:01:34 +08:00
if GetOption('target') != 'mdk5':
src += Glob(cwd + '/fsp/src/bsp/mcu/all/*.c')
src += [cwd + '/fsp/src/bsp/cmsis/Device/RENESAS/Source/system.c']
src += [cwd + '/fsp/src/bsp/cmsis/Device/RENESAS/Source/startup.c']
src += Glob(cwd + '/fsp/src/r_*/*.c')
CPPPATH = [ cwd + '/arm/CMSIS_5/CMSIS/Core/Include',
cwd + '/fsp/inc',
cwd + '/fsp/inc/api',
cwd + '/fsp/inc/instances',
cwd + '/tes/dave2d/inc']
2023-04-19 14:01:34 +08:00
2024-05-08 09:43:52 +08:00
if GetDepend('BSP_USING_LCD') or GetDepend('BSP_USING_LVGL'):
src += Glob(cwd + '/tes/dave2d/src/*.c')
CPPPATH += [cwd + '/tes/dave2d/inc']
2023-04-19 14:01:34 +08:00
group = DefineGroup('ra', src, depend = [''], CPPPATH = CPPPATH)
Return('group')