rt-thread/bsp/x1000/applications/SConscript

14 lines
260 B
Python
Raw Normal View History

2016-04-24 19:34:41 +08:00
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')