rt-thread/bsp/nv32f100x/app/SConscript

16 lines
262 B
Python
Raw Normal View History

2017-09-20 14:21:18 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
cwd = os.path.join(str(Dir('#')), 'app')
src = Glob('./src/*.c')
path = [cwd + '/inc',
cwd + '/..',
]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = path)
Return('group')