c9db6ed151
* [bsp/nuvoton] Support NuMaker-M467HJ BSP and update drivers. * Format files. Co-authored-by: Wayne Lin <wclin@nuvoton.com>
13 lines
265 B
Python
13 lines
265 B
Python
# RT-Thread building script for component
|
|
Import('RTT_ROOT')
|
|
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('nu_pkgs_ccap', src, depend = ['BSP_USING_CCAP'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|