summaryrefslogtreecommitdiff
path: root/doc/Doxyfile.in
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Doxyfile.in')
-rw-r--r--doc/Doxyfile.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in
index dd0926f..da4132f 100644
--- a/doc/Doxyfile.in
+++ b/doc/Doxyfile.in
@@ -1,12 +1,12 @@
# Doxyfile for Doxygen 1.5.7
# .qhp output
-GENERATE_QHP = yes
+GENERATE_QHP = @GENERATE_QHP@
QHP_NAMESPACE = "io.github.uriparser"
-QHP_VIRTUAL_FOLDER = "uriparser-@VERSION@"
+QHP_VIRTUAL_FOLDER = "uriparser-@PROJECT_VERSION@"
# .qch output
-QCH_FILE = "../@PACKAGE@-@VERSION@.qch"
+QCH_FILE = "../@PROJECT_NAME@-@PROJECT_VERSION@.qch"
QHG_LOCATION = "@QHG_LOCATION@"
@@ -19,11 +19,11 @@ PROJECT_NAME = "uriparser"
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by double-quotes) that should identify the project for which the documentation is generated. This name is used in the title of most generated pages and in a few other places.
-PROJECT_NUMBER = "@VERSION@"
+PROJECT_NUMBER = "@PROJECT_VERSION@"
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This could be handy for archiving the generated documentation or if some version control system is used.
-CHM_FILE = "..\@PACKAGE@-@VERSION@.chm"
+CHM_FILE = "..\@PROJECT_NAME@-@PROJECT_VERSION@.chm"
# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can be used to specify the file name of the resulting .chm file. You can add a path in front of the file if the result should not be written to the html output directory.
@@ -280,7 +280,7 @@ WARN_FORMAT = "WARNING: $text ($line, $file)"
###############################################################
-INPUT = @ac_abs_confdir@/include @ac_abs_confdir@/doc/Mainpage.txt
+INPUT = @CMAKE_CURRENT_SOURCE_DIR@/include @CMAKE_CURRENT_SOURCE_DIR@/doc/Mainpage.txt
# The INPUT tag is used to specify the files and/or directories that contain documented source files. You may enter file names like myfile.cpp or directories like /usr/src/myproject. Separate the files or directories with spaces.
#
# Note: If this tag is empty the current directory is searched.
@@ -346,7 +346,7 @@ RECURSIVE = YES
# The IMAGE_PATH tag can be used to specify one or more files or directories that contain images that are to be included in the documentation (see the \image command).
-INPUT_FILTER = "bash @ac_abs_confdir@/doc/preprocess.sh"
+INPUT_FILTER = "bash @CMAKE_CURRENT_SOURCE_DIR@/doc/preprocess.sh"
# The INPUT_FILTER tag can be used to specify a program that doxygen should invoke to filter for each input file. Doxygen will invoke the filter program by executing (via popen()) the command:
#
# <filter> <input-file>
@@ -497,7 +497,7 @@ GENERATE_HTMLHELP = @GENERATE_HTMLHELP@
# The HTML Help Workshop contains a compiler that can convert all HTML output generated by doxygen into a single compressed HTML file (.chm). Compressed HTML files are now used as the Windows 98 help format, and will replace the old Windows help format (.hlp) on all Windows platforms in the future. Compressed HTML files also contain an index, a table of contents, and you can search for words in the documentation. The HTML workshop also contains a viewer for compressed HTML files.
-HHC_LOCATION = ../hhc.exe
+HHC_LOCATION = "@HTML_HELP_COMPILER@"
# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can be used to specify the location (absolute path including file name) of the HTML help compiler (hhc.exe). If non empty doxygen will try to run the HTML help compiler on the generated index.hhp.
@@ -746,7 +746,7 @@ SEARCH_INCLUDES = YES
# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files in the INCLUDE_PATH (see below) will be searched if a #include is found.
-INCLUDE_PATH = @ac_abs_confdir@/include
+INCLUDE_PATH = @CMAKE_CURRENT_SOURCE_DIR@/include
# The INCLUDE_PATH tag can be used to specify one or more directories that contain include files that are not input files but should be processed by the preprocessor.