rt-thread-official/bsp/nv32f100x/app/SConscript

16 lines
268 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')
2023-01-09 10:14:23 +08:00
src = Glob('./src/*.c')
2017-09-20 14:21:18 +08:00
path = [cwd + '/inc',
2023-01-09 10:14:23 +08:00
cwd + '/..',
]
2017-09-20 14:21:18 +08:00
group = DefineGroup('Applications', src, depend = [''], CPPPATH = path)
Return('group')