rt-thread/bsp/qemu-vexpress-a9/applications/SConscript

12 lines
250 B
Python
Raw Normal View History

2017-09-19 12:14:52 +08:00
Import('RTT_ROOT')
Import('rtconfig')
from building import *
2017-10-17 09:53:16 +08:00
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
2017-09-19 12:14:52 +08:00
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')