mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 01:29:24 +08:00
15 lines
271 B
Python
15 lines
271 B
Python
import copy
|
|
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('source/*.c')
|
|
src += Glob('source/*.S')
|
|
|
|
CPPPATH = [cwd + '/include/']
|
|
|
|
group = DefineGroup('HALCoGen', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|