diff --git a/CMakeLists.txt b/CMakeLists.txt index f9116894..4a780998 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.14) project( Aedis - VERSION 1.1.0 + VERSION 1.1.1 DESCRIPTION "A redis client designed for performance and scalability" HOMEPAGE_URL "https://mzimbres.github.io/aedis" LANGUAGES CXX @@ -138,7 +138,6 @@ install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION include) #======================================================================= set(DOXYGEN_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/doc") - configure_file(doc/Doxyfile.in doc/Doxyfile @ONLY) add_custom_target( diff --git a/CMakePresets.json b/CMakePresets.json index 940c2e8b..4a70636e 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -51,7 +51,8 @@ "CMAKE_CXX_FLAGS": "-Wall -Wextra -fsanitize=address", "CMAKE_SHARED_LINKER_FLAGS": "-fsanitize=address", "CMAKE_CXX_STANDARD_REQUIRED": "ON", - "PROJECT_BINARY_DIR": "${sourceDir}/build/dev" + "PROJECT_BINARY_DIR": "${sourceDir}/build/dev", + "DOXYGEN_OUTPUT_DIRECTORY": "${sourceDir}/build/dev/doc/" } }, { diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index bd540597..ef40f2f5 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -907,10 +907,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = include \ - benchmarks/benchmarks.md \ - CHANGELOG.md \ - examples README.md +INPUT = include examples README.md # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses