rt-thread/bsp/simulator/applications/SConscript

14 lines
297 B
Python
Raw Normal View History

2013-01-08 22:40:58 +08:00
from building import *
2013-01-22 16:57:47 +08:00
cwd = GetCurrentDir()
2013-01-08 22:40:58 +08:00
src = Glob('*.c')
2013-01-22 16:57:47 +08:00
# remove no need file.
if GetDepend('RT_USING_DFS_WINSHAREDIR') == False:
SrcRemove(src, 'dfs_win32.c')
2013-01-08 22:40:58 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')