From 037e2554a1ba984a9889c8e8e5c7b0ad31e58b25 Mon Sep 17 00:00:00 2001 From: Medusa Slockbower Date: Wed, 17 Sep 2025 17:19:52 -0400 Subject: [PATCH] - Renamed Doxyfile -> Doxyfile.out --- .gitignore | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 65df753..55765ea 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ /bin/ /lib/ /doxy/README.md -/doxy/Doxyfile +/doxy/Doxyfile.out diff --git a/CMakeLists.txt b/CMakeLists.txt index 030695f..3514866 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -282,7 +282,7 @@ if(DOXYGEN_FOUND) set(DOXY_EXAMPLES_DIR "${FENNEC_SOURCE_DIR}/examples") get_filename_component(DOXYGEN_PROJECT_NAME ${FENNEC_SOURCE_DIR} NAME) # Set Doxy Project name to the name of the root dir set(DOXYGEN_CONFIG_IN "${FENNEC_SOURCE_DIR}/doxy/Doxyfile.in") # Input config file with preprocessor arguments - set(DOXYGEN_CONFIG_OUT "${FENNEC_SOURCE_DIR}/doxy/Doxyfile") # Generated config file from input + set(DOXYGEN_CONFIG_OUT "${FENNEC_SOURCE_DIR}/doxy/Doxyfile.out") # Generated config file from input configure_file(${DOXYGEN_CONFIG_IN} ${DOXYGEN_CONFIG_OUT} @ONLY) # Execute preprocessing step message("Doxygen Build Started.")