From bcd2dd429cfd80ec6e2662392749eadbcbdf444f Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Fri, 28 May 2021 08:32:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20CMake:=20asio:=20Use=20HTTP=20fo?= =?UTF-8?q?r=20downloading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is much faster than using git. --- 3rdParty/asio/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdParty/asio/CMakeLists.txt b/3rdParty/asio/CMakeLists.txt index 7387c69ea..75b96b0ce 100644 --- a/3rdParty/asio/CMakeLists.txt +++ b/3rdParty/asio/CMakeLists.txt @@ -2,8 +2,8 @@ include(FetchContent_MakeAvailableExcludeFromAll) include(FetchContent) FetchContent_Declare(asio - GIT_REPOSITORY https://github.com/chriskohlhoff/asio.git - GIT_TAG 77bcfe775ad63178942c9dd95d93edd10442b80f + URL https://github.com/chriskohlhoff/asio/archive/77bcfe775ad63178942c9dd95d93edd10442b80f.zip + URL_HASH MD5=bfb3071dff527a6618be8836dc753f0a ) FetchContent_MakeAvailableExcludeFromAll(asio)