Skip to content

Commit 6a7205e

Browse files
committed
Mostly updates to documentation.
1 parent ebd7567 commit 6a7205e

22 files changed

+624
-215
lines changed

Doxyfile.in

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ MAX_INITIALIZER_LINES = 30
538538
# at the bottom of the documentation of classes and structs. If set to YES the
539539
# list will mention the files that were used to generate the documentation.
540540

541-
SHOW_USED_FILES = YES
541+
SHOW_USED_FILES = NO
542542

543543
# If the sources in your project are distributed over multiple directories
544544
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
@@ -648,7 +648,8 @@ WARN_LOGFILE =
648648
# directories like "/usr/src/myproject". Separate the files or directories
649649
# with spaces.
650650

651-
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/v2/
651+
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/http/src/network/http/v2/ \
652+
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/
652653

653654
# This tag can be used to specify the character encoding of the source files
654655
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -680,7 +681,7 @@ RECURSIVE = YES
680681
# Note that relative paths are relative to the directory from which doxygen is
681682
# run.
682683

683-
EXCLUDE =
684+
EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/uri/src/network/uri/detail
684685

685686
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
686687
# directories that are symbolic links (a Unix file system feature) are excluded
@@ -843,7 +844,8 @@ COLS_IN_ALPHA_INDEX = 5
843844
# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
844845
# should be ignored while generating the index headers.
845846

846-
IGNORE_PREFIX = @CMAKE_CURRENT_SOURCE_DIR@/http/src/
847+
IGNORE_PREFIX = @CMAKE_CURRENT_SOURCE_DIR@/http/src/ \
848+
@CMAKE_CURRENT_SOURCE_DIR@/uri/src/
847849

848850
#---------------------------------------------------------------------------
849851
# configuration options related to the HTML output

http/src/CMakeLists.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -102,27 +102,27 @@ endif()
102102
# )
103103
#endif()
104104

105-
set(CPP-NETLIB_HTTP_CONSTANTS-V2_SRCS
105+
set(CPP-NETLIB_HTTP_V2_CONSTANTS_SRCS
106106
${CMAKE_CURRENT_SOURCE_DIR}/http/v2/constants.cpp
107107
)
108-
add_library(network-http-constants-v2 ${CPP-NETLIB_HTTP_CONSTANTS-V2_SRCS})
109-
add_dependencies(network-http-constants-v2
108+
add_library(network-http-v2-constants ${CPP-NETLIB_HTTP_V2_CONSTANTS_SRCS})
109+
add_dependencies(network-http-v2-constants
110110
cppnetlib-uri
111111
)
112-
target_link_libraries(network-http-constants-v2
112+
target_link_libraries(network-http-v2-constants
113113
${Boost_LIBRARIES}
114114
cppnetlib-uri
115115
)
116116

117-
set(CPP-NETLIB_HTTP_CLIENT-V2_SRCS
117+
set(CPP-NETLIB_HTTP_V2_CLIENT_SRCS
118118
${CMAKE_CURRENT_SOURCE_DIR}/http/v2/client/client.cpp
119119
${CMAKE_CURRENT_SOURCE_DIR}/http/v2/client/client_errors.cpp
120120
)
121-
add_library(network-http-client-v2 ${CPP-NETLIB_HTTP_CLIENT-V2_SRCS})
122-
add_dependencies(network-http-client-v2
121+
add_library(network-http-v2-client ${CPP-NETLIB_HTTP_V2_CLIENT_SRCS})
122+
add_dependencies(network-http-v2-client
123123
cppnetlib-uri
124124
)
125-
target_link_libraries(network-http-client-v2
125+
target_link_libraries(network-http-v2-client
126126
${Boost_LIBRARIES}
127127
cppnetlib-uri
128128
)
@@ -135,7 +135,7 @@ prependToElements( "${CMAKE_CURRENT_SOURCE_DIR}/"
135135
# CPP-NETLIB_CONSTANTS_SRCS
136136
# CPP-NETLIB_HTTP_SERVER_SRCS
137137
# CPP-NETLIB_HTTP_CLIENT_SRCS
138-
CPP-NETLIB_HTTP_CLIENT-V2_SRCS )
138+
CPP-NETLIB_HTTP_V2_CLIENT_SRCS )
139139

140140

141141
## propagate sources to parent directory for one-lib-build
@@ -145,4 +145,4 @@ prependToElements( "${CMAKE_CURRENT_SOURCE_DIR}/"
145145
#set(CPP-NETLIB_HTTP_CLIENT_SRCS ${CPP-NETLIB_HTTP_CLIENT_SRCS} PARENT_SCOPE)
146146
#set(CPP-NETLIB_HTTP_SERVER_SRCS ${CPP-NETLIB_HTTP_SERVER_SRCS} PARENT_SCOPE)
147147
#set(CPP-NETLIB_CONSTANTS_SRCS ${CPP-NETLIB_CONSTANTS_SRCS} PARENT_SCOPE)
148-
set(CPP-NETLIB_HTTP_CLIENT-V2_SRCS ${CPP-NETLIB_HTTP_CLIENT-V2_SRCS} PARENT SCOPE)
148+
set(CPP-NETLIB_HTTP_V2_CLIENT_SRCS ${CPP-NETLIB_HTTP_V2_CLIENT_SRCS} PARENT SCOPE)

http/src/network/http/v2/client.hpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
#ifndef __NETWORK_HTTP_V2_CLIENT_INC__
77
#define __NETWORK_HTTP_V2_CLIENT_INC__
88

9+
/**
10+
* \defgroup http_client HTTP Client
11+
*/
12+
913
#include <network/http/v2/client/client.hpp>
1014

1115
#endif // __NETWORK_HTTP_V2_CLIENT_INC__

0 commit comments

Comments
 (0)