1 # ------------------------------------------------------------------------- 2 # Doxygen documentation batch 3 # ------------------------------------------------------------------------- 5 set(DOXYGEN
"/builds/gitlab-kitware-sciviz-ci/.gitlab/doxygen/bin/doxygen")
6 set(DOXYGEN_DOT_EXECUTABLE
"/usr/bin/dot")
7 set(HTML_HELP_COMPILER
"")
8 set(PERL
"/usr/bin/perl")
9 set(DOXYGEN_KEEP_TEMP
"")
12 message(FATAL_ERROR
"error: cannot build ParaView documentation without doxygen")
14 if(NOT DOXYGEN_DOT_EXECUTABLE)
15 message(FATAL_ERROR "error: cannot build ParaView documentation without dot")
18 message(FATAL_ERROR "error: cannot build ParaView documentation without perl")
22 # Documentation/project name. Used in some of the resulting file names and 23 # xrefs to uniquify two or more projects linked together through their 24 # Doxygen's tag files. Mandatory for each documentation set. 25 # Note: might be the same as the doxyfile's PROJECT_NAME 27 # PROJECT_NAME=ParaView 29 set (PROJECT_NAME ParaView)
31 # PATH_TO_VTK_DOX_SCRIPTS:
32 # Path to the directory holding the Perl scripts used to produce the VTK doc
33 # in Doxygen format. You need the VTK source files or a local copy of
36 # PATH_TO_VTK_DOX_SCRIPTS=/builds/gitlab-kitware-sciviz-ci/Utilities/Doxygen
38 set(PATH_TO_VTK_DOX_SCRIPTS
"/builds/gitlab-kitware-sciviz-ci/VTK/Utilities/Doxygen")
39 set(PATH_TO_PARAVIEW_DOX_SCRIPTS
"/builds/gitlab-kitware-sciviz-ci/Utilities/Doxygen")
42 # Source directory. The top directory of the source files.
44 # SOURCE_DIR=/builds/gitlab-kitware-sciviz-ci
46 set(SOURCE_DIR
"/builds/gitlab-kitware-sciviz-ci")
49 # Relative path from the top directory of the source files to the directory 50 # (or top directory) holding the files to document. Useful if several parts 51 # of the same source directory should be documented separately. 54 # REL_PATH_TO_TOP=framework/src 55 set(REL_PATH_TO_TOP .)
57 # INTERMEDIATE_DOX_DIR: 58 # Directory where the intermediate Doxygen files should be stored (mainly 59 # these headers files converted from the VTK format to the Doxygen format). 60 # This directory is erased at the end of this script, unless you comment 61 # the corresponding line. 62 # DOXTEMP might be used to simplify the syntax. 64 # DOXTEMP=DOXTEMP=/builds/gitlab-kitware-sciviz-ci/build/Utilities/Doxygen 65 # INTERMEDIATE_DOX_DIR=$DOXTEMP/dox 67 set(DOXTEMP
"/builds/gitlab-kitware-sciviz-ci/build/Utilities/Doxygen")
68 set(INTERMEDIATE_DOX_DIR
"${DOXTEMP}/dox")
71 # Data directory. The root directory of the data files. 77 # GITWEB, GITWEB_SUFFIX, GITWEB_CHECKOUT,
78 # GITWEB_DATA, GITWEB_DATA_SUFFIX, GITWEB_DATA_CHECKOUT:
79 # URL to the GITWeb of the project + same in checkout mode (i.e. appending a
80 # file name to
this URL will retrieve the contents of the file). In the same way
81 # GITWEB_SUFFIX will be appended to the result. 82 # Same applies to GITWEB_DATA, which is the URL to the GITWeb 83 # of the Data's project. 85 # GITWEB=http://public.kitware.com/cgi-bin/viewcvs.cgi 86 # GITWEB_SUFFIX=?root=VTK 87 # GITWEB_CHECKOUT=http://public.kitware.com/cgi-bin/viewcvs.cgi