0d1c709fa5
Co-authored-by: Wayne Lin <wclin@nuvoton.com>
10 lines
224 B
Python
10 lines
224 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c') + Glob('*.cpp')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('nu_pkgs_demo', src, depend = ['NU_PKG_USING_DEMO'], CPPPATH = CPPPATH)
|
|
Return('group')
|