rt-thread-official/bsp/nrf5x/nrf52832/applications/SConscript

17 lines
266 B
Python
Raw Normal View History

2020-04-14 22:17:27 +08:00
from building import *
cwd = GetCurrentDir()
src = Split('''
main.c
''')
if GetDepend(['BSP_USING_ON_CHIP_FS']):
src += ['mnt.c']
CPPPATH = [str(Dir('#')), cwd]
2020-04-14 22:17:27 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')