Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/mrdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ base-url: https://www.github.com/cppalliance/http_proto/blob/develop/
verbose: true
multipage: true
use-system-libc: true
use-system-stdlib: true

# Warnings
warn-unnamed-param: true
Expand Down
12 changes: 6 additions & 6 deletions test/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ target_include_directories(boost_http_proto_tests PRIVATE . ../../../url/extra/t
target_include_directories(boost_http_proto_tests PRIVATE . ../../)
target_link_libraries(
boost_http_proto_tests PRIVATE
boost_http_proto
boost_filesystem
Boost::http_proto
Boost::filesystem
)

if (TARGET boost_rts_zlib)
target_link_libraries(boost_http_proto_tests PRIVATE boost_rts_zlib)
if (TARGET Boost::rts_zlib)
target_link_libraries(boost_http_proto_tests PRIVATE Boost::rts_zlib)
endif ()

if (TARGET boost_rts_brotli)
target_link_libraries(boost_http_proto_tests PRIVATE boost_rts_brotli)
if (TARGET Boost::rts_brotli)
target_link_libraries(boost_http_proto_tests PRIVATE Boost::rts_brotli)
endif ()

add_test(NAME boost_http_proto_tests COMMAND boost_http_proto_tests)
Expand Down
Loading