From 9a9d1000a079abb07f7717223fbf6fc05cb7fe4e Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 21 Mar 2022 19:03:51 -0700 Subject: [PATCH] lib/topfish: missing CMake dependencies This seems to have been broken since CMake support for lib/topfish was introduced in 45893ca105777e1c5b97788cd169e400250ffa1f. But it was never noticed because there is no executable in the CMake build system that links against topfish yet. Gitlab: #1836 --- lib/topfish/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/topfish/CMakeLists.txt b/lib/topfish/CMakeLists.txt index ebc669b8b..eebf871c1 100644 --- a/lib/topfish/CMakeLists.txt +++ b/lib/topfish/CMakeLists.txt @@ -14,4 +14,9 @@ if(with_smyrna) ${GRAPHVIZ_LIB_DIR}/common ) + target_link_libraries(topfish PRIVATE + gvc + neatogen + ) + endif() -- 2.40.0