diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-05 15:08:42 -0300 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-05 16:28:00 -0300 |
| commit | e5bd7b5158da18fbc8d986a6a6490234719f2d9d (patch) | |
| tree | a5d10c690f934c73051885a9c1e5116ab5573bba | |
| parent | 7bb026ca74f3c9a4308bdb3756a67d2d6a958d99 (diff) | |
Copy doxyfile before running doxygen, fixes out of tree builds.
| -rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bcaada8..c2f8c4b 100644 --- a/configure.ac +++ b/configure.ac @@ -59,6 +59,14 @@ CXXFLAGS="$CXXFLAGS $cxxflag" AC_CHECK_PROG( DOXYGEN, [doxygen], [doxygen] ) AM_CONDITIONAL( MAKE_DOC, [test "x${DOXYGEN}" != x] ) +# Copy doc files to build dir if necessary +AC_CONFIG_LINKS( [doc/doxygen/Doxyfile:doc/doxygen/Doxyfile] ) +AC_CONFIG_LINKS( [doc/doxygen/footer.html:doc/doxygen/footer.html] ) +AC_CONFIG_LINKS( [doc/doxygen/header.html:doc/doxygen/header.html] ) +AC_CONFIG_LINKS( [doc/doxygen/tutorial.txt:doc/doxygen/tutorial.txt] ) +AC_CONFIG_LINKS( [doc/images/ccrma.gif:doc/images/ccrma.gif] ) +AC_CONFIG_LINKS( [doc/images/mcgill.gif:doc/images/mcgill.gif] ) + # Checks for package options and external software AC_CANONICAL_HOST |
