Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade PDAL to 2.2.0 #640

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CMake/fletch-tarballs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,16 @@ endif()
list(APPEND fletch_external_sources GDAL)

# PDAL
set(PDAL_version 1.7.2)
set(PDAL_SELECT_VERSION 2.2.0 CACHE STRING "Select the version of PDAL to build.")
set_property(CACHE PDAL_SELECT_VERSION PROPERTY STRINGS "1.7.2" "2.2.0")

set(PDAL_version ${PDAL_SELECT_VERSION})
set(PDAL_url "https://github.com/PDAL/PDAL/releases/download/${PDAL_version}/PDAL-${PDAL_version}-src.tar.gz")
set(PDAL_md5 "a89710005fd54e6d2436955e2e542838")
if (PDAL_version VERSION_EQUAL 1.7.2)
set(PDAL_md5 "a89710005fd54e6d2436955e2e542838")
else()
set(PDAL_md5 "52d84c5b64b7cd30770a225e3d13fce3")
endif()
list(APPEND fletch_external_sources PDAL)

# GeographicLib
Expand Down
1 change: 1 addition & 0 deletions Doc/release-notes/master.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Updates since v1.4.0
* Remove support for OpenCV 2
* Add VTK version 9.0.1
* Update PyBind11 from 2.2.1 to 2.5.0
* Add and optional PDAL update to version 2.2.0

Fixes since v1.4.0
------------------
Expand Down