4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 09:37:23 +08:00

9 lines
171 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
group = DefineGroup('Applications', src, depend = [''], CPPPATH = [cwd])
Return('group')