mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
FindDoxygen: Fix typo in docs
The example for using custom configuration file used `doxygen_add_doxs()` instead of `doxygen_add_docs()`.
This commit is contained in:
committed by
Brad King
parent
eb56394c9d
commit
8695591d50
@@ -653,7 +653,7 @@ Example: Custom Configuration File
|
|||||||
|
|
||||||
In the following example, a custom ``Doxyfile`` configuration file is created
|
In the following example, a custom ``Doxyfile`` configuration file is created
|
||||||
in the current binary directory (:variable:`CMAKE_CURRENT_BINARY_DIR`) prior
|
in the current binary directory (:variable:`CMAKE_CURRENT_BINARY_DIR`) prior
|
||||||
to calling the ``doxygen_add_doxs()``. This allows project-specific
|
to calling the ``doxygen_add_docs()``. This allows project-specific
|
||||||
configuration tags to be customized as needed:
|
configuration tags to be customized as needed:
|
||||||
|
|
||||||
.. code-block:: cmake
|
.. code-block:: cmake
|
||||||
@@ -664,7 +664,7 @@ configuration tags to be customized as needed:
|
|||||||
if(Doxygen_FOUND)
|
if(Doxygen_FOUND)
|
||||||
configure_file(Doxyfile.in Doxyfile)
|
configure_file(Doxyfile.in Doxyfile)
|
||||||
|
|
||||||
doxygen_add_doxs(
|
doxygen_add_docs(
|
||||||
example_docs
|
example_docs
|
||||||
foo.c bar.c
|
foo.c bar.c
|
||||||
ALL
|
ALL
|
||||||
|
|||||||
Reference in New Issue
Block a user