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