rt-thread-official/libcpu/arm/realview-a8-vmm/SConscript

24 lines
459 B
Python
Raw Normal View History

2019-01-07 06:09:45 +08:00
# RT-Thread building script for component
2014-03-29 12:14:24 +08:00
from building import *
2019-01-07 06:09:45 +08:00
Import('rtconfig')
2014-03-29 12:14:24 +08:00
cwd = GetCurrentDir()
2019-01-07 06:09:45 +08:00
src = Glob('*.c') + Glob('*.cpp')
2014-03-29 12:14:24 +08:00
CPPPATH = [cwd]
2019-01-07 06:09:45 +08:00
if rtconfig.PLATFORM == 'armcc':
src += Glob('*_rvds.S')
if rtconfig.PLATFORM == 'gcc':
src += Glob('*_init.S')
src += Glob('*_gcc.S')
2014-03-29 12:14:24 +08:00
if rtconfig.PLATFORM == 'iar':
2019-01-07 06:09:45 +08:00
src += Glob('*_iar.S')
2014-03-29 12:14:24 +08:00
2019-01-07 06:09:45 +08:00
group = DefineGroup('cpu', src, depend = [''], CPPPATH = CPPPATH)
2014-03-29 12:14:24 +08:00
Return('group')