4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-17 02:43:32 +08:00
2021-04-13 10:34:24 +08:00

13 lines
207 B
Python

import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Split("""
main.c
""")
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')