From 6b197af9c3a298954d19d0d9e38917dff43ad8a9 Mon Sep 17 00:00:00 2001 From: Tom Noble Date: Wed, 18 Oct 2023 23:53:14 +0100 Subject: [PATCH] Adds missing PCL dependency to noether_tpp CMakeLists.txt (#207) --- noether_tpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noether_tpp/CMakeLists.txt b/noether_tpp/CMakeLists.txt index 53b4aef9..3051d5c4 100644 --- a/noether_tpp/CMakeLists.txt +++ b/noether_tpp/CMakeLists.txt @@ -7,7 +7,7 @@ extract_package_metadata(pkg) project(${pkg_extracted_name} VERSION ${pkg_extracted_version} LANGUAGES CXX) find_package(Eigen3 REQUIRED) -find_package(PCL REQUIRED COMPONENTS common io) +find_package(PCL REQUIRED COMPONENTS common io surface) find_package(VTK REQUIRED NO_MODULE) if(VTK_FOUND AND ("${VTK_VERSION}" VERSION_LESS 7.1))