From f818556378016bdeb8621b8e3ac918eff30a8c7a Mon Sep 17 00:00:00 2001 From: Trevor Pesout Date: Thu, 24 Mar 2022 16:12:48 -0700 Subject: [PATCH] fix test compile issue without hdf5 lib --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aeb72d6..ec105de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ execute_process( set(MARGIN_VERSION_MAJOR 2) set(MARGIN_VERSION_MINOR 3) #set(MARGIN_VERSION_COMMIT dev-${GIT_COMMIT_HASH}) -set(MARGIN_VERSION_COMMIT 0) +set(MARGIN_VERSION_COMMIT 1) configure_file( "${PROJECT_SOURCE_DIR}/inc/marginVersion.h.in" "${PROJECT_SOURCE_DIR}/inc/marginVersion.h" @@ -406,6 +406,8 @@ else () tests/stRPHmmTest.c tests/viewTest.c tests/stitchingTest.c - tests/vcfTest.c) + tests/vcfTest.c + tests/lpcTest.c + ) endif () target_link_libraries(allTests marginLib)