From 67453dd4f862f91f59bc4e1ba44d41b24f7c552e Mon Sep 17 00:00:00 2001 From: m4xw Date: Wed, 23 Nov 2022 13:28:51 +0100 Subject: [PATCH] Use shallow clone for vcpkg (#2006) --- CMake/automate-vcpkg.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/automate-vcpkg.cmake b/CMake/automate-vcpkg.cmake index ee07f6bfb..409194959 100644 --- a/CMake/automate-vcpkg.cmake +++ b/CMake/automate-vcpkg.cmake @@ -116,7 +116,7 @@ endmacro() macro(_install_or_update_vcpkg) if(NOT EXISTS ${VCPKG_ROOT}) message(STATUS "Cloning vcpkg in ${VCPKG_ROOT}") - execute_process(COMMAND git clone https://github.com/Microsoft/vcpkg.git ${VCPKG_ROOT}) + execute_process(COMMAND git clone https://github.com/Microsoft/vcpkg.git ${VCPKG_ROOT} --depth 1) # If a reproducible build is desired (and potentially old libraries are # ok), uncomment the # following line and pin the vcpkg repository to a specific githash.