From: Matthew Fernandez Date: Tue, 22 Mar 2022 02:03:51 +0000 (-0700) Subject: lib/topfish: missing CMake dependencies X-Git-Tag: 4.0.0~161^2~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a9d1000a079abb07f7717223fbf6fc05cb7fe4e;p=graphviz 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 --- 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()