rt-thread/bsp/stm32f429-apollo/applications/SConscript

12 lines
276 B
Python
Raw Normal View History

Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'applications')
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = ['RT_USING_GUIENGINE'], CPPPATH = CPPPATH)
Return('group')