From 0998cd29facadd8b5961b5649daeb680aa141871 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Wed, 12 Jun 2024 11:38:21 +1000 Subject: [PATCH] chore(FFI): Disable test using curl as the header fails to compile --- rust/pact_ffi/examples/logging/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust/pact_ffi/examples/logging/CMakeLists.txt b/rust/pact_ffi/examples/logging/CMakeLists.txt index 06defae4..f0e962c4 100644 --- a/rust/pact_ffi/examples/logging/CMakeLists.txt +++ b/rust/pact_ffi/examples/logging/CMakeLists.txt @@ -81,7 +81,8 @@ find_package(PactFfi REQUIRED CONFIG PATHS ${SEARCH_PATH}) ################################################################################################# find_package(CURL) if(CURL_FOUND) - add_definitions( -DCURL=1 ) + # add_definitions( -DCURL=1 ) + # Curl headers fail to compile endif() #################################################################################################