36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
from buildutils import *
|
|
|
|
Import('env', 'install', 'buildSample')
|
|
localenv = env.Clone()
|
|
|
|
# (program name, [source files])
|
|
samples = [('demo', ['demo.f90'])]
|
|
|
|
for programName, sources in samples:
|
|
buildSample(localenv.Program, programName, sources,
|
|
F90PATH='#build/src/fortran',
|
|
LIBS=['cantera_fortran']+env['cantera_libs']+['stdc++'],
|
|
LIBPATH=[env['sundials_libdir'], '#build/lib'])
|
|
|
|
# Generate SConstruct files to be installed
|
|
incdirs = [pjoin(localenv['ct_incroot'], 'cantera')]
|
|
libs = ['cantera_fortran'] + localenv['cantera_libs'] + ['stdc++']
|
|
libdirs = (localenv['ct_libdir'], localenv['sundials_libdir'],
|
|
localenv['blas_lapack_dir'], localenv['boost_lib_dir'])
|
|
linkflags = ('-g', localenv['thread_flags'])
|
|
localenv['tmpl_cantera_incdirs'] = repr([x for x in incdirs if x])
|
|
localenv['tmpl_cantera_libs'] = repr(libs)
|
|
localenv['tmpl_cantera_libdirs'] = repr([x for x in libdirs if x])
|
|
localenv['tmpl_cantera_linkflags'] = repr([x for x in linkflags if x])
|
|
localenv['tmpl_progname'] = programName
|
|
localenv['tmpl_sourcename'] = programName + '.f90'
|
|
|
|
sconstruct = localenv.SubstFile('SConstruct', 'SConstruct.in')
|
|
|
|
# Generate Makefile to be installed
|
|
localenv['make_target'] = programName
|
|
localenv['make_sourcefile'] = programName + '.f90'
|
|
makefile = localenv.SubstFile('Makefile', 'Makefile.in')
|
|
|
|
install(pjoin('$inst_sampledir', 'f90'), makefile)
|
|
install(pjoin('$inst_sampledir', 'f90'), sconstruct)
|