mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 01:19:20 +08:00
17 lines
266 B
Python
17 lines
266 B
Python
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Split('''
|
|
main.c
|
|
''')
|
|
|
|
if GetDepend(['BSP_USING_ON_CHIP_FS']):
|
|
src += ['mnt.c']
|
|
|
|
|
|
CPPPATH = [str(Dir('#')), cwd]
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group') |