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
|
Author: Andreas Tille <tille@debian.org>
Last-Update: Fri, 13 Dec 2019 22:17:15 +0100
Description: There is no point to check for gtest since its installed via Build-Depends
--- a/meson.build
+++ b/meson.build
@@ -60,12 +60,17 @@ libblasr_htslib_dep = dependency('htslib
# clock_gettime on old glibc systems
libblasr_rt_dep = cpp.find_library('rt', required : false)
+# Explicitely list required HDF5 components
+# hdf5_dep = dependency('hdf5', language : 'c', required: true)
+hdf5_dep = dependency('hdf5', language : 'cpp', required : false, disabler: true)
+
libblasr_deps = [
libblasr_boost_dep,
libblasr_pbbam_dep,
libblasr_zlib_dep,
libblasr_htslib_dep,
- libblasr_rt_dep]
+ libblasr_rt_dep,
+ hdf5_dep]
##########
# Config #
|