Skip to content

Commit

Permalink
Add hdf5 as env dependency. Install dynamic library deps
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldanciu committed Feb 15, 2022
1 parent 380d2a4 commit a45e87b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,16 @@ gtest_discover_tests(tests)
file(COPY tests/data DESTINATION ${CMAKE_CURRENT_BINARY_DIR})

install(
TARGETS pileup
TARGETS pileup variant_calling similarity_matrix spectral_clustering expectation_maximization BamTools util
progress_bar armadillo spdlog
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)

install(
TARGETS secedo
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dependencies:
- cxx-compiler
- make
- cmake
- hdf5
- openmp
- openblas

0 comments on commit a45e87b

Please sign in to comment.