From ebcc441f74e018c726b913a339addfa6607671ec Mon Sep 17 00:00:00 2001 From: Filipe PINTO Date: Fri, 10 Feb 2023 10:38:29 +0100 Subject: [PATCH] Add the ability to use pkg_config on windows build --- curl-sys/build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/curl-sys/build.rs b/curl-sys/build.rs index 821959488..3a746ff10 100644 --- a/curl-sys/build.rs +++ b/curl-sys/build.rs @@ -39,6 +39,8 @@ fn main() { if windows { if try_vcpkg() { return; + } else if try_pkg_config() { + return; } } else if try_pkg_config() { return;