4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 08:57:20 +08:00
2022-05-20 10:51:55 +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')