mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 19:53:29 +08:00
13 lines
282 B
Python
13 lines
282 B
Python
Import('RTT_ROOT')
|
|
from building import *
|
|
cwd = GetCurrentDir()
|
|
group = []
|
|
if GetDepend('NU_PKG_USING_DEMO'):
|
|
src = Split("""
|
|
usbd_hid_dance_mouse.c
|
|
""")
|
|
CPPPATH = [cwd]
|
|
group = DefineGroup('nu_pkgs_demo', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|