@@ -34,12 +34,12 @@ option (LAMBDA_WITH_BIFM "Include codepaths for bidirectional indexes." OFF)
34
34
35
35
if (LAMBDA_STATIC_BUILD)
36
36
add_definitions (-DLAMBDA_STATIC_BUILD=1)
37
- set (CMAKE_FIND_LIBRARY_SUFFIXES ".a" )
38
37
# apple does not support fully static builds, but at least libgcc and libstdc++
39
38
if (APPLE )
40
39
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -static-libstdc++" )
41
40
message (WARNING "WARNING: Builds on Mac are never fully static." )
42
41
else (APPLE )
42
+ set (CMAKE_FIND_LIBRARY_SUFFIXES ".a" )
43
43
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static" )
44
44
endif (APPLE )
45
45
# on linux cmake adds -rdynamic automatically which clang can't handle in static builds
@@ -65,7 +65,6 @@ message(STATUS "Remove CMakeCache.txt and re-run cmake with -DOPTIONNAME=ON|OFF
65
65
# Search SeqAn and select dependencies.
66
66
find_package (OpenMP QUIET )
67
67
find_package (ZLIB QUIET )
68
- find_package (BZip2 QUIET )
69
68
find_package (SeqAn QUIET REQUIRED CONFIG)
70
69
71
70
# BIO
@@ -85,7 +84,6 @@ add_subdirectory(../submodules/fmindex-collection fmindex-collection)
85
84
message (STATUS "These dependencies were found:" )
86
85
message ( " BIOCPP-CORE ${BIOCPP_CORE_FOUND} ${BIOCPP_CORE_VERSION} " )
87
86
message ( " BIOCPP-IO ${BIOCPP_IO_FOUND} ${BIOCPP_IO_VERSION} " )
88
- message ( " BZIP2 ${BZIP2_FOUND} ${BZIP2_VERSION_STRING} " )
89
87
message ( " CEREAL ${CEREAL_FOUND} ${CEREAL_VERSION} " )
90
88
message ( " OPENMP ${OPENMP_FOUND} ${OpenMP_CXX_FLAGS} " )
91
89
message ( " SEQAN ${SEQAN_FOUND} ${SEQAN_VERSION_STRING} " )
0 commit comments