File: disable-gtest.patch

package info (click to toggle)
blasr 5.3%2B0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,064 kB
  • sloc: cpp: 13,753; ansic: 614; python: 314; makefile: 237; xml: 201; sh: 72
file content (28 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (7)
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
Description: temporarily disable gtests for bax2bam and bam2bax
 We should make use of the packaged gtest; without additional effort,
 the build system doesn't find it.
Author: Afif Elghraoui <afif@debian.org>
Forwarded: not-needed
Last-Update: 2016-12-20
--- blasr.orig/utils/bam2bax/CMakeLists.txt
+++ blasr/utils/bam2bax/CMakeLists.txt
@@ -14,7 +14,7 @@
 )
 
 # build-time options
-option(Bam2Bax_build_tests "Build Bam2Bax's unit tests." ON)
+option(Bam2Bax_build_tests "Build Bam2Bax's unit tests." OFF)
 
 # main project paths
 set(Bam2Bax_RootDir       ${Bam2Bax_SOURCE_DIR})
--- blasr.orig/utils/bax2bam/CMakeLists.txt
+++ blasr/utils/bax2bam/CMakeLists.txt
@@ -14,7 +14,7 @@
 )
 
 # build-time options
-option(Bax2BAM_build_tests "Build Bax2BAM's unit tests." ON)
+option(Bax2BAM_build_tests "Build Bax2BAM's unit tests." OFF)
 
 # main project paths
 set(Bax2Bam_RootDir       ${Bax2Bam_SOURCE_DIR})