|
@@ -2,8 +2,16 @@ Import('RTT_ROOT')
|
|
|
Import('rtconfig')
|
|
|
from building import *
|
|
|
|
|
|
-cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
-src = Glob('*.c')
|
|
|
+cwd = os.path.join(str(Dir('#')), 'applications')
|
|
|
+
|
|
|
+src = Split("""
|
|
|
+application.c
|
|
|
+startup.c
|
|
|
+""")
|
|
|
+
|
|
|
+if GetDepend('RT_USING_CAN'):
|
|
|
+ src += ['canapp.c']
|
|
|
+
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|