From f67145059990f0e94f4c3f5131406d05d35082cf Mon Sep 17 00:00:00 2001 From: Alan Morris Date: Mon, 16 Jan 2023 14:03:49 -0700 Subject: [PATCH] Fix debug linking of ParticlesTests on macOS. --- Testing/ParticlesTests/CMakeLists.txt | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Testing/ParticlesTests/CMakeLists.txt b/Testing/ParticlesTests/CMakeLists.txt index 83e3bda208..66dd0a1028 100644 --- a/Testing/ParticlesTests/CMakeLists.txt +++ b/Testing/ParticlesTests/CMakeLists.txt @@ -7,12 +7,8 @@ add_executable(ParticlesTests ) target_link_libraries(ParticlesTests - ${ITK_LIBRARIES} - ${VTK_LIBRARIES} - Particles - Testing - Optimize - Project -) + Mesh Optimize Utils trimesh2 Particles + Testing pybind11::embed Project Image + ) add_test(NAME ParticlesTests COMMAND ParticlesTests)