4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 04:43:30 +08:00

13 lines
207 B
Python
Raw Normal View History

2019-06-18 15:54:36 +08:00
import rtconfig
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd]
src = Split("""
main.c
""")
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')