mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 22:53:31 +08:00
9cd099c33c
Signed-off-by: Willian Chan <chentingwei@rt-thread.com>
10 lines
204 B
Python
10 lines
204 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
group = DefineGroup('touch', src, depend = ['BSP_USING_TOUCH'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|