4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-13 04:29:22 +08:00

9 lines
171 B
Python
Raw Permalink Normal View History

2021-02-18 13:29:12 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
2021-02-18 13:29:12 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = [cwd])
2021-02-18 13:29:12 +08:00
Return('group')