From 075e47efcaf455dc90255646a00dc462e35d748e Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Fri, 28 May 2021 08:29:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20CMake:=20simpleini:=20Use=20HTTP?= =?UTF-8?q?=20for=20downloading?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is much faster than using git. --- 3rdParty/simpleini/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdParty/simpleini/CMakeLists.txt b/3rdParty/simpleini/CMakeLists.txt index e857fa21d..a0655d67f 100644 --- a/3rdParty/simpleini/CMakeLists.txt +++ b/3rdParty/simpleini/CMakeLists.txt @@ -2,8 +2,8 @@ include(FetchContent_MakeAvailableExcludeFromAll) include(FetchContent) FetchContent_Declare(simpleini - GIT_REPOSITORY https://github.com/brofield/simpleini.git - GIT_TAG 7bca74f6535a37846162383e52071f380c99a43a + URL https://github.com/brofield/simpleini/archive/7bca74f6535a37846162383e52071f380c99a43a.zip + URL_HASH MD5=af067f743dd5c7aac3212ca22da6f621 ) FetchContent_MakeAvailableExcludeFromAll(simpleini)