[SCons] Generate SConstruct and Makefile for LiC6 electrode example

This commit is contained in:
Ray Speth 2016-04-06 22:16:48 -04:00
parent 0a3927a077
commit 8b62a59403

View file

@ -3,11 +3,14 @@ from buildutils import *
Import('env', 'build', 'install', 'buildSample')
# (subdir, program name, [source extensions])
samples = [('combustor', 'combustor', ['cpp']),
('flamespeed', 'flamespeed', ['cpp']),
('kinetics1', 'kinetics1', ['cpp']),
('NASA_coeffs', 'NASA_coeffs', ['cpp']),
('rankine', 'rankine', ['cpp'])]
samples = [
('combustor', 'combustor', ['cpp']),
('flamespeed', 'flamespeed', ['cpp']),
('kinetics1', 'kinetics1', ['cpp']),
('NASA_coeffs', 'NASA_coeffs', ['cpp']),
('rankine', 'rankine', ['cpp']),
('LiC6_electrode', 'LiC6_electrode', ['cpp'])
]
for subdir, name, extensions in samples:
localenv = env.Clone()