Blob Blame History Raw
From 1983388a2f472087bddbafb66f41f5430eeee5cc Mon Sep 17 00:00:00 2001
From: Jeremy Cline <jcline@redhat.com>
Date: Fri, 7 Sep 2018 00:52:51 -0400
Subject: [PATCH] Don't download catch during build

Signed-off-by: Jeremy Cline <jcline@redhat.com>
---
 CMakeLists.txt | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e217171..251cbae 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -284,27 +284,6 @@ foreach(file ${source_all})
   set_property(SOURCE ${file} APPEND PROPERTY COMPILE_DEFINITIONS __FILENAME__="${shorter_file}")
 endforeach()
 
-#
-## Add a rule to download the catch unit test framework
-#
-include(ExternalProject)
-ExternalProject_Add(catch
-  GIT_REPOSITORY "https://lab.louiz.org/louiz/Catch.git"
-  PREFIX "external"
-  UPDATE_COMMAND ""
-  CONFIGURE_COMMAND ""
-  BUILD_COMMAND ""
-  INSTALL_COMMAND ""
-  )
-set_target_properties(catch PROPERTIES EXCLUDE_FROM_ALL TRUE)
-ExternalProject_Get_Property(catch SOURCE_DIR)
-if(NOT EXISTS ${CMAKE_SOURCE_DIR}/tests/catch.hpp)
-  target_include_directories(test_suite
-    PUBLIC "${SOURCE_DIR}/single_include/"
-    )
-  add_dependencies(test_suite catch)
-endif()
-
 #
 ## Add some custom rules to launch the tests
 #
-- 
2.17.1