4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 13:37:24 +08:00
2016-04-24 19:34:41 +08:00

14 lines
260 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
if not GetDepend("RT_USING_DFS_ROMFS"):
SrcRemove(src, "romfs.c")
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')