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