Skip to content

Commit

Permalink
[SCons] Generate SConstruct and Makefile for LiC6 electrode example
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Apr 7, 2016
1 parent 0a3927a commit 8b62a59
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions samples/cxx/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8b62a59

Please sign in to comment.