4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-29 04:10:26 +08:00
2013-01-22 16:57:47 +08:00

14 lines
297 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
# remove no need file.
if GetDepend('RT_USING_DFS_WINSHAREDIR') == False:
SrcRemove(src, 'dfs_win32.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')