File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.14)
10
10
11
11
project (
12
12
Aedis
13
- VERSION 1.1.0
13
+ VERSION 1.1.1
14
14
DESCRIPTION "A redis client designed for performance and scalability"
15
15
HOMEPAGE_URL "https://mzimbres.github.io/aedis"
16
16
LANGUAGES CXX
@@ -138,7 +138,6 @@ install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION include)
138
138
#=======================================================================
139
139
140
140
set (DOXYGEN_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR} /doc" )
141
-
142
141
configure_file (doc /Doxyfile.in doc /Doxyfile @ONLY )
143
142
144
143
add_custom_target (
Original file line number Diff line number Diff line change 51
51
"CMAKE_CXX_FLAGS" : " -Wall -Wextra -fsanitize=address" ,
52
52
"CMAKE_SHARED_LINKER_FLAGS" : " -fsanitize=address" ,
53
53
"CMAKE_CXX_STANDARD_REQUIRED" : " ON" ,
54
- "PROJECT_BINARY_DIR" : " ${sourceDir}/build/dev"
54
+ "PROJECT_BINARY_DIR" : " ${sourceDir}/build/dev" ,
55
+ "DOXYGEN_OUTPUT_DIRECTORY" : " ${sourceDir}/build/dev/doc/"
55
56
}
56
57
},
57
58
{
Original file line number Diff line number Diff line change @@ -907,10 +907,7 @@ WARN_LOGFILE =
907
907
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
908
908
# Note: If this tag is empty the current directory is searched.
909
909
910
- INPUT = include \
911
- benchmarks/benchmarks.md \
912
- CHANGELOG.md \
913
- examples README.md
910
+ INPUT = include examples README.md
914
911
915
912
# This tag can be used to specify the character encoding of the source files
916
913
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
You can’t perform that action at this time.
0 commit comments