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 2a49349 commit f378303Copy full SHA for f378303
contract-tests/client-contract-tests/CMakeLists.txt
@@ -8,6 +8,10 @@ project(
8
LANGUAGES CXX
9
)
10
11
+if (LD_CURL_NETWORKING)
12
+ target_compile_definitions(${LIBNAME} PUBLIC LD_CURL_NETWORKING)
13
+endif()
14
+
15
include(${CMAKE_FILES}/json.cmake)
16
17
add_executable(client-tests
contract-tests/client-contract-tests/src/main.cpp
@@ -47,7 +47,10 @@ int main(int argc, char* argv[]) {
47
srv.add_capability("tls:skip-verify-peer");
48
srv.add_capability("tls:custom-ca");
49
srv.add_capability("client-prereq-events");
50
+ // Proxies are supported only with CURL networking.
51
+#ifdef LD_CURL_NETWORKING
52
srv.add_capability("http-proxy");
53
+#endif
54
55
net::signal_set signals{ioc, SIGINT, SIGTERM};
56
0 commit comments