Skip to content

Commit 3973bf0

Browse files
authored
Merge pull request #372 from ahoarau/patch-1
add missing link against Eigen3::Eigen
2 parents 2c527f2 + 892b36d commit 3973bf0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,11 @@ function(create_library)
368368
if(BUILD_WITH_OPENMP_SUPPORT)
369369
target_link_libraries(${PROJECT_NAME} PUBLIC OpenMP::OpenMP_CXX)
370370
endif()
371-
target_link_libraries(${PROJECT_NAME} PUBLIC fmt::fmt PRIVATE mimalloc)
371+
target_link_libraries(
372+
${PROJECT_NAME}
373+
PUBLIC Eigen3::Eigen fmt::fmt
374+
PRIVATE mimalloc
375+
)
372376
# set the install-tree include dirs used by dependent projects to consume this
373377
# target
374378
target_include_directories(

0 commit comments

Comments
 (0)