4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-20 13:33:45 +08:00

14 lines
257 B
Python

from building import *
Import('rtconfig')
src = []
cwd = GetCurrentDir()
src += Glob('*.c')
path = [cwd]
# add src and include to group.
group = DefineGroup('nu_pkgs_ili_tpc', src, depend = ['NU_PKG_USING_ILI_TPC'], CPPPATH = path)
Return('group')