4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 16:23:33 +08:00

14 lines
204 B
Python
Raw Normal View History

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