2020-04-05 13:29:29 +08:00
|
|
|
# RT-Thread building script for component
|
|
|
|
|
|
|
|
from building import *
|
|
|
|
|
|
|
|
Import('rtconfig')
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
2024-02-20 03:33:47 +08:00
|
|
|
group = DefineGroup('libcpu', src, depend = [''], CPPPATH = CPPPATH)
|
2020-04-05 13:29:29 +08:00
|
|
|
|
|
|
|
Return('group')
|