From 2aa3da15b7fc81222c74375bcc3427009d309f5e Mon Sep 17 00:00:00 2001 From: Curve Date: Sat, 2 Dec 2023 17:30:03 +0100 Subject: [PATCH] fix(cmakelists): vtk dir on linux --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 86b1b405..10493cf9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -145,7 +145,7 @@ if(VIENNALS_USE_VTK) if(MSVC) set(VTK_LIBS "${VTK_BINARY_DIR}/bin/$") else() - set(VTK_LIBS "${VTK_BINARY_DIR}/bin") + set(VTK_LIBS "${VTK_BINARY_DIR}/lib") endif() endif()