${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl
)
-configure_file(
- ${CMAKE_CURRENT_SOURCE_DIR}/scripts/mod_footer.pl.in
- ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl
- )
-
-
#
# Generate header, footer and style files for doxygen.
#
COMMAND ${CMAKE_COMMAND} -E touch footer.html
COMMAND ${DOXYGEN_EXECUTABLE} -w html header.html footer.html style.css options.dox
COMMAND ${PERL_EXECUTABLE} -pi ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl header.html
- COMMAND ${PERL_EXECUTABLE} -pi ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl footer.html
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/options.dox
${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl
- ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl
)
#
+++ /dev/null
-## ---------------------------------------------------------------------
-##
-## Copyright (C) 2014 - 2018 by the deal.II authors
-##
-## This file is part of the deal.II library.
-##
-## The deal.II library is free software; you can use it, redistribute
-## it, and/or modify it under the terms of the GNU Lesser General
-## Public License as published by the Free Software Foundation; either
-## version 2.1 of the License, or (at your option) any later version.
-## The full text of the license can be found in the file LICENSE.md at
-## the top level directory of deal.II.
-##
-## ---------------------------------------------------------------------
-
-#
-# A PERL script that modifies the default-generated 'footer.html' file
-# that doxygen provides for us and customizes it for our needs.
-#
-
-use Sys::Hostname;
-my $host = hostname;
-
-my $hosting = << 'EOT'
- Hosting provided by
-<a href="https://www.iwr.uni-heidelberg.de/"><img src="https://www.dealii.org/pictures/IWRlogo4.png" alt="IWR"></a>
-<a href="https://www.uni-heidelberg.de/"><img src="https://www.dealii.org/pictures/UniLogo4.png" alt="Universität Heidelberg"></a>
-EOT
- ;
-
-if ($host eq "simweb")
-{
- s/\$doxygenversion/\$doxygenversion $hosting/;
-}