From 71cabc86ef858bc10499ed04b9b3dee9cdf8b16b Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 25 Aug 2014 22:18:56 +0000 Subject: [PATCH] [SCons] Express dependencies for rebuilding Doxygen documentation --- doc/SConscript | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/SConscript b/doc/SConscript index bcb0fb291..27847bcba 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -94,6 +94,11 @@ if localenv['doxygen_docs']: docs = build(localenv.Command('#build/docs/doxygen/html/index.html', 'doxygen/Doxyfile', 'doxygen $SOURCE')) + env.Depends(docs, env.Glob('#doc/doxygen/*') + + mglob(env, '#include/cantera', 'h') + + mglob(env, '#include/cantera/*', 'h') + + mglob(env, '#src/cantera/*', 'h', 'cpp')) + env.Alias('doxygen', docs) install(pjoin('$inst_docdir', 'doxygen/html'), mglob(localenv, '#/build/docs/doxygen/html', 'html', 'svg', 'css', 'png'))