4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-24 14:07:05 +08:00
2023-12-29 22:13:09 +08:00

15 lines
229 B
Python

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd + '/..']
src = Split('''
app.c
''')
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')