scons: include all relevant source files in src/boards

This commit is contained in:
punkrockguy318 2012-12-13 20:23:16 +00:00
parent b8c1d1e29b
commit bf4ba33801
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import glob
source_list = glob.glob('*.cpp')
source_list = glob.glob('*.cpp')+glob.glob('*.c')
for x in range(len(source_list)):
source_list[x] = 'boards/' + source_list[x]