19 lines
392 B
Python
19 lines
392 B
Python
|
from building import *
|
||
|
Import('rtconfig')
|
||
|
|
||
|
src = []
|
||
|
cwd = GetCurrentDir()
|
||
|
path = [cwd]
|
||
|
|
||
|
# add src and include to group.
|
||
|
src += Glob('tpc_worker.c')
|
||
|
if GetDepend('NU_PKG_USING_TPC_ILI'):
|
||
|
src += Glob('ili.c')
|
||
|
elif GetDepend('NU_PKG_USING_TPC_GT911'):
|
||
|
src += Glob('gt911.c')
|
||
|
else:
|
||
|
src = []
|
||
|
|
||
|
group = DefineGroup('nu_pkgs_tpc', src, depend = [''], CPPPATH = path)
|
||
|
Return('group')
|