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
|
Description: test-drive is not packaged yet, thus tests are not run with
this framework.
Author: Andrius Merkys <merkys@debian.org>
Forwarded: not-needed
--- a/test/unit/meson.build
+++ b/test/unit/meson.build
@@ -20,7 +20,7 @@
'test-drive',
version: '>=0.3',
fallback: ['test-drive', 'testdrive_dep'],
- required: not meson.is_subproject(),
+ required: false,
default_options: [
'default_library=static',
'openmp=false',
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -55,7 +55,7 @@
endif()
if(NOT TARGET "test-drive::test-drive")
- find_package("test-drive" REQUIRED)
+ # find_package("test-drive" REQUIRED)
endif()
# Sources: initialize program sources (prog) and library sources (srcs) empty
|