37 lines
1.6 KiB
Python
37 lines
1.6 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,
|
|
CPPPATH=['#build/src/fortran', '#include'],
|
|
LIBS=env['cantera_libs']+['cantera_fortran']+['stdc++'],
|
|
LIBPATH=[env['sundials_libdir'], '#build/lib'])
|
|
|
|
# Generate SConstruct files to be installed
|
|
incdirs = [pjoin(localenv['ct_incroot'], 'cantera')]
|
|
libs = (['cantera_fortran', 'cantera'] + localenv['sundials_libs'] +
|
|
localenv['boost_libs'] + localenv['blas_lapack_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([x for x in libs if x])
|
|
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)
|