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.
27 lines
1000 B
27 lines
1000 B
10 months ago
|
Import('RTT_ROOT')
|
||
|
Import('rtconfig')
|
||
|
from building import *
|
||
|
|
||
|
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 ['gcc', 'armclang']:
|
||
|
src += Glob(cwd + '/TARGET_CY8CKIT-062S2-43012/*.c')
|
||
|
src += Glob(cwd + '/TARGET_CY8CKIT-062S2-43012/COMPONENT_CM4/*.c')
|
||
|
src += Glob(cwd + '/TARGET_CY8CKIT-062S2-43012/config/GeneratedSource/*.c')
|
||
|
|
||
|
CPPPATH = [ cwd + '/TARGET_CY8CKIT-062S2-43012',
|
||
|
cwd + '/TARGET_CY8CKIT-062S2-43012/config/GeneratedSource']
|
||
|
if rtconfig.PLATFORM in ['gcc']:
|
||
|
src += [cwd + '/TARGET_CY8CKIT-062S2-43012/COMPONENT_CM4/TOOLCHAIN_GCC_ARM/startup_psoc6_02_cm4.S']
|
||
|
elif rtconfig.PLATFORM in ['armclang']:
|
||
|
src += [cwd + '/TARGET_CY8CKIT-062S2-43012/COMPONENT_CM4/TOOLCHAIN_ARM/startup_psoc6_02_cm4.S']
|
||
|
|
||
|
group = DefineGroup('libs', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
Return('group')
|