9 lines
142 B
Python
9 lines
142 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
group = DefineGroup('Applications', src, depend = [''])
|
||
|
|
||
|
Return('group')
|