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