2023-10-17 17:20:54 +08:00
|
|
|
# RT-Thread building script for component
|
|
|
|
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
Import('rtconfig')
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
|
|
if rtconfig.PLATFORM in ['gcc', 'armclang', 'llvm-arm']:
|
|
|
|
src += Glob('*context_gcc.S')
|
|
|
|
|
2024-02-20 03:33:47 +08:00
|
|
|
group = DefineGroup('libcpu', src, depend = [''], CPPPATH = CPPPATH)
|
2023-10-17 17:20:54 +08:00
|
|
|
|
|
|
|
Return('group')
|