mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 05:53:31 +08:00
12 lines
172 B
Python
12 lines
172 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split("""
|
|
main.c
|
|
""")
|
|
|
|
group = DefineGroup('Applications', src, depend = [''])
|
|
|
|
Return('group')
|