head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.16 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.14 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.12 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.10 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.8 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.6 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.4 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.2 pkgsrc-2024Q2-base:1.1; locks; strict; comment @# @; 1.1 date 2024.05.05.20.58.08; author adam; state Exp; branches; next ; commitid PcBqWfvNsJOmYQ8F; desc @@ 1.1 log @pcl: updated to 1.14.1 PCL 1.14.1 One big change in this release is that the dependency boost-filesystem is now optional if you compile PCL and your own project that uses PCL as C++17 (e.g. by adding -DCMAKE_CXX_STANDARD=17 -DCMAKE_CUDA_STANDARD=17 to the cmake call). The default C++ standard for PCL is currently still C++14, where boost-filesystem is a hard requirement. Some modules will not be built if boost-filesystem is not available (currently recognition, outofcore, some apps). Big thanks to @@cybaol for implementing this, and of course also thanks to everyone else who contributed to this release! PCL 1.14.0 This release brings for example: a faster and more robust GeneralizedIterativeClosestPoint (GICP) registration better compatibility with the latest compilers and 3rd party libraries (Eigen, Boost, etc.) and many more bug fixes and performance enhancements @ text @$NetBSD$ On Darwin, do not make application bundles. --- cmake/pcl_targets.cmake.orig 2024-05-05 18:48:22.260824422 +0000 +++ cmake/pcl_targets.cmake @@@@ -316,11 +316,7 @@@@ function(PCL_ADD_EXECUTABLE _name) message(FATAL_ERROR "PCL_ADD_EXECUTABLE requires parameter COMPONENT.") endif() - if(ARGS_BUNDLE AND APPLE AND VTK_USE_COCOA) - add_executable(${_name} MACOSX_BUNDLE ${ARGS_SOURCES}) - else() - add_executable(${_name} ${ARGS_SOURCES}) - endif() + add_executable(${_name} ${ARGS_SOURCES}) PCL_ADD_VERSION_INFO(${_name}) target_link_libraries(${_name} Threads::Threads) @