From 3763021cd52aa96460db1ff4c767ace5421a7934 Mon Sep 17 00:00:00 2001 From: wuyangyong Date: Sat, 5 Nov 2011 10:28:43 +0000 Subject: [PATCH] add applications (bsp lpc1788) git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1785 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/lpc178x/applications/SConscript | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bsp/lpc178x/applications/SConscript diff --git a/bsp/lpc178x/applications/SConscript b/bsp/lpc178x/applications/SConscript new file mode 100644 index 0000000000..591734409c --- /dev/null +++ b/bsp/lpc178x/applications/SConscript @@ -0,0 +1,11 @@ +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 = [''], CPPPATH = CPPPATH) + +Return('group')