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