From e0bbd798451b5929b6e7ab40a866d535c6ad9762 Mon Sep 17 00:00:00 2001 From: Martin Dobias Date: Wed, 12 Apr 2023 11:02:48 +0200 Subject: [PATCH] Enable build with PDAL by default Point cloud support has been there in a couple of QGIS releases already and it would make sense to have the PDAL support built by default. Without PDAL, point cloud layer implementation is very limited, not allowing indexing and display of regular files like LAS/LAZ, and the Processing algorithms are not available either... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8eef2104fbe..dd4040d9382 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -282,7 +282,7 @@ if(WITH_CORE) endif() endif(WITH_HANA) - set (WITH_PDAL FALSE CACHE BOOL "Determines whether PDAL support should be built") + set (WITH_PDAL TRUE CACHE BOOL "Determines whether PDAL support should be built") set (WITH_EPT TRUE CACHE BOOL "Determines whether Entwine Point Cloud (EPT) support should be built")