Skip to content

Commit

Permalink
Add missing calls to find_dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Feb 11, 2024
1 parent 082348e commit 6e1a211
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions cmake/hictkConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
set(HICTK_WITH_EIGEN @HICTK_WITH_EIGEN@)

include(CMakeFindDependencyMacro)

find_dependency(
bshoshany-thread-pool
CONFIG
QUIET
REQUIRED)
find_dependency(
concurrentqueue
CONFIG
QUIET
REQUIRED)

if(HICTK_WITH_EIGEN)
find_dependency(
Eigen3
Expand Down Expand Up @@ -47,11 +59,26 @@ find_dependency(
CONFIG
QUIET
REQUIRED)
find_dependency(
readerwriterqueue
CONFIG
QUIET
REQUIRED)
find_dependency(
span-lite
CONFIG
QUIET
REQUIRED)
find_dependency(
spdlog
CONFIG
QUIET
REQUIRED)
find_dependency(
zstd
CONFIG
QUIET
REQUIRED)

include("${CMAKE_CURRENT_LIST_DIR}/hictkTargets.cmake")

Expand Down

0 comments on commit 6e1a211

Please sign in to comment.