14 lines
260 B
Python
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')
|