We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9dc651 commit 8f871f1Copy full SHA for 8f871f1
examples/CMakeLists.txt
@@ -31,7 +31,9 @@ add_library(http ${CMAKE_CURRENT_SOURCE_DIR}/../src/http.cpp)
31
target_compile_features(http PUBLIC cxx_std_17)
32
target_include_directories(http PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../src)
33
target_link_libraries(http PUBLIC OpenSSL::SSL OpenSSL::Crypto Boost::asio)
34
-target_compile_options(http PRIVATE $<$<BOOL:${HTTP_BUILD_FUZZERS}>:-fprofile-instr-generate -fcoverage-mapping>)
+target_compile_options(http
35
+ PRIVATE $<$<BOOL:${HTTP_BUILD_FUZZERS}>:-fprofile-instr-generate -fcoverage-mapping>
36
+ PUBLIC -Wall)
37
38
# Examples
39
function(add_example target_name)
0 commit comments