4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 02:59:23 +08:00
2019-03-24 10:43:59 +08:00

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')