Improve variable naming in NB FEP kernel for loop.
[alexxy/gromacs.git] / docs / SphinxMacros.cmake
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2015,2016,2018, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 include(CMakeParseArguments)
36
37 macro(gmx_init_sphinx_setup SPHINX_INPUT_DIR)
38     set(_SPHINX_INPUT_ROOT ${SPHINX_INPUT_DIR})
39     set(_SPHINX_INPUT_FILES)
40     set(_SPHINX_IMAGE_CONVERSION_FILES)
41 endmacro()
42
43 macro(gmx_add_sphinx_input_file FILEPATH)
44     list(APPEND _SPHINX_INPUT_FILES ${FILEPATH})
45 endmacro()
46
47 function(gmx_add_sphinx_source_files)
48     set(_one_value_args FROM TO PREFIX)
49     cmake_parse_arguments(ARG "" "${_one_value_args}" "FILES" ${ARGN})
50     if (NOT ARG_FROM)
51         set(ARG_FROM ${CMAKE_CURRENT_SOURCE_DIR})
52     endif()
53     if (ARG_TO)
54         set(ARG_TO ${ARG_TO}/)
55     endif()
56     foreach(_file ${ARG_FILES})
57         set(_source ${ARG_FROM}/${_file})
58         get_filename_component(_filepath ${_file} DIRECTORY)
59         get_filename_component(_filename ${_source} NAME)
60         set(_targetdir ${_SPHINX_INPUT_ROOT}${ARG_TO}/${_filepath})
61         set(_target ${_SPHINX_INPUT_ROOT}/${ARG_TO}${_file})
62         if (NOT EXISTS ${_targetdir})
63             file(MAKE_DIRECTORY ${_targetdir})
64         endif()
65         add_custom_command(
66             OUTPUT  ${_target}
67             COMMAND ${CMAKE_COMMAND} -E copy ${_source} ${_target}
68             DEPENDS ${_source}
69             COMMENT "Copying Sphinx input file ${ARG_PREFIX}${_file}"
70             VERBATIM)
71         list(APPEND _SPHINX_INPUT_FILES ${_target})
72     endforeach()
73     set(_SPHINX_INPUT_FILES "${_SPHINX_INPUT_FILES}" PARENT_SCOPE)
74 endfunction()
75
76 macro(gmx_remove_obsolete_sphinx_input_files IGNORE_PATTERN)
77     file(GLOB_RECURSE _obsolete_sources ${_SPHINX_INPUT_ROOT}/*.rst)
78     list(REMOVE_ITEM _obsolete_sources ${_SPHINX_INPUT_FILES})
79     foreach(_file ${_obsolete_sources})
80         file(RELATIVE_PATH _rel_path ${_SPHINX_INPUT_ROOT} ${_file})
81         if (NOT _rel_path MATCHES "${IGNORE_PATTERN}")
82             message(STATUS "Removing obsolete Sphinx input ${_rel_path}")
83             file(REMOVE ${_file})
84         endif()
85     endforeach()
86 endmacro()
87
88 macro(gmx_add_sphinx_input_target TARGETNAME)
89     gmx_add_custom_output_target(${TARGETNAME} OUTPUT STAMP
90         DEPENDS ${_SPHINX_INPUT_FILES})
91 endmacro()
92
93 function(gmx_add_sphinx_image_conversion_files)
94     set(_one_value_args FROM TO PREFIX)
95     cmake_parse_arguments(ARG "" "${_one_value_args}" "FILES" ${ARGN})
96     if (NOT ARG_FROM)
97         set(ARG_FROM ${CMAKE_CURRENT_SOURCE_DIR})
98     endif()
99     if (ARG_TO)
100         set(ARG_TO ${ARG_TO}/)
101     endif()
102     foreach(_file ${ARG_FILES})
103         set(_source ${ARG_FROM}/${_file})
104         get_filename_component(_filepath ${_file} DIRECTORY)
105         get_filename_component(_filename ${_source} NAME)
106         string(REGEX REPLACE "pdf" "png" _tmp ${_filename})
107         set(_targetdir ${_SPHINX_INPUT_ROOT}/${ARG_TO}/${_filepath})
108         set(_target ${_targetdir}/${_tmp})
109         if (NOT EXISTS ${_targetdir})
110             file(MAKE_DIRECTORY ${_targetdir})
111         endif()
112         add_custom_command(
113             OUTPUT  ${_target}
114             COMMAND ${ImageMagick_convert_EXECUTABLE} ${_source} -antialias -quality 03 -quiet -pointsize 12 -density 1200 -units PixelsPerInch  ${_target}
115             DEPENDS ${_source}
116             COMMENT "Converting Sphinx input graphics file ${_file} to png"
117             VERBATIM)
118         list(APPEND _SPHINX_IMAGE_CONVERSION_FILES ${_target})
119     endforeach()
120     set(_SPHINX_IMAGE_CONVERSION_FILES "${_SPHINX_IMAGE_CONVERSION_FILES}" PARENT_SCOPE)
121 endfunction()
122
123 macro(gmx_add_sphinx_image_conversion_target TARGETNAME)
124     gmx_add_custom_output_target(${TARGETNAME} OUTPUT STAMP
125         DEPENDS ${_SPHINX_IMAGE_CONVERSION_FILES})
126 endmacro()