rt-thread/bsp/lpc55sxx/lpc55s16_nxp_evk/applications/SConscript

20 lines
390 B
Python
Raw Normal View History

import rtconfig
from building import *
cwd = GetCurrentDir()
src = Glob('main.c')
CPPPATH = [cwd]
2023-01-09 10:14:23 +08:00
# add for startup script
if rtconfig.PLATFORM in ['gcc']:
CPPDEFINES = ['__START=entry']
else:
CPPDEFINES = []
if GetDepend('BSP_USING_SDIO'):
src += ['mnt.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES)
Return('group')