File: 2001_cmake_ignore_git.patch

package info (click to toggle)
biboumi 9.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,952 kB
  • sloc: cpp: 12,722; python: 2,182; sh: 35; makefile: 22
file content (45 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Description: Avoid cmake messing with git
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2016-12-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -288,27 +288,6 @@
 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
 #
 add_custom_target(check COMMAND "test_suite"
@@ -371,8 +350,7 @@
   WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
   )
 add_custom_target(dist
-  DEPENDS ${ARCHIVE_NAME}.tar.xz
-  DEPENDS catch)
+  DEPENDS ${ARCHIVE_NAME}.tar.xz)
 
 add_custom_target(rpm
   DEPENDS dist