4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 00:53:31 +08:00

12 lines
247 B
Python
Raw Normal View History

2018-11-19 10:47:35 +08:00
# RT-Thread building script for component
2018-11-19 09:49:32 +08:00
from building import *
2018-11-19 10:47:35 +08:00
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
2018-11-19 09:49:32 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')