4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-20 22:43:32 +08:00
2021-06-30 19:23:19 +08:00

11 lines
212 B
Python

import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
src = Glob('*.c')
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')