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.")