14 lines
204 B
Python
14 lines
204 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split('''
|
|
main.c
|
|
''')
|
|
|
|
CPPPATH = [str(Dir('#')), cwd]
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|