From 25afbdbe355f3175fdb8f656d77f9bc3f75981b6 Mon Sep 17 00:00:00 2001 From: Zhansong Li Date: Tue, 10 Jul 2018 09:27:08 +1000 Subject: [PATCH] Fix catch2 download link Fixes #61. --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index eed8c47..6e2c56a 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -4,7 +4,7 @@ # download catch if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/catch.hpp) - file(DOWNLOAD https://raw.githubusercontent.com/philsquared/Catch/master/single_include/catch.hpp + file(DOWNLOAD https://raw.githubusercontent.com/catchorg/Catch2/master/single_include/catch2/catch.hpp ${CMAKE_CURRENT_BINARY_DIR}/catch.hpp) endif()