File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 3.5)
1+ cmake_minimum_required (VERSION 3.5...3.31 )
22
33project (drogon)
44
Original file line number Diff line number Diff line change 1717# ParseAndAddDrogonTests(${PROJECT_NAME}) #
1818#==================================================================================================#
1919
20- cmake_minimum_required (VERSION 3.5)
20+ cmake_minimum_required (VERSION 3.5...3.31 )
2121
2222# This removes the contents between
2323# - block comments (i.e. /* ... */)
Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ if(Jsoncpp_FOUND)
5151 COMMAND awk "{ printf \$ 3 }"
5252 COMMAND sed -e "s/\" //g"
5353 OUTPUT_VARIABLE jsoncpp_ver)
54- message (STATUS "jsoncpp version:" ${jsoncpp_ver} )
54+ if (NOT Jsoncpp_FIND_QUIETLY)
55+ message (STATUS "jsoncpp version:" ${jsoncpp_ver} )
56+ endif ()
5557 if (jsoncpp_ver LESS 1.7)
5658 message (
5759 FATAL_ERROR
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class StreamError final : public std::exception
8888 * An interface for stream request reading.
8989 * User should create an implementation class, or use built-in handlers
9090 */
91- class RequestStreamReader
91+ class DROGON_EXPORT RequestStreamReader
9292{
9393 public:
9494 virtual ~RequestStreamReader () = default ;
You can’t perform that action at this time.
0 commit comments