We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b700dfc commit c034f44Copy full SHA for c034f44
1 file changed
src/CMakeLists.txt
@@ -13,20 +13,26 @@
13
# You should have received a copy of the GNU General Public License along with
14
# this program. If not, see <https://www.gnu.org/licenses/>.
15
16
+# Packages
17
+if(USE_LIBDEFLATE)
18
+ find_package(LIBDEFLATE REQUIRED)
19
+endif()
20
if(BUILD_NANOPORE)
21
find_package(HTSLIB 1.20 REQUIRED)
22
add_compile_definitions(BUILD_NANOPORE)
23
else()
24
find_package(HTSLIB REQUIRED)
25
endif()
26
find_package(Threads REQUIRED)
27
+find_package(ZLIB REQUIRED)
28
-if(NOT TARGET bamxx)
- add_subdirectory(bamxx)
-endif()
29
+# Subdirs
30
if(NOT TARGET smithlab_cpp)
31
add_subdirectory(smithlab_cpp)
32
33
+if(NOT TARGET bamxx)
34
+ add_subdirectory(bamxx)
35
36
add_subdirectory(common)
37
add_subdirectory(radmeth)
38
add_subdirectory(utils)
0 commit comments