-
Notifications
You must be signed in to change notification settings - Fork 54
Added PDAL 2.9.2 as an option #772
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
Draft
chetnieter
wants to merge
5
commits into
Kitware:master
Choose a base branch
from
chetnieter:dev/update-pdal
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
972512e
Added PDAL 2.9.2 as an option
chetnieter 2049d02
Updated release notes
chetnieter 0678032
Using UNIX rather than LINUX to check os for GDAL
chetnieter 1a0bc38
Added libtiff as a dependency for updated PROJ
chetnieter 163b903
Pushed minimal cmake version to 3.6.0
chetnieter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -381,7 +381,7 @@ list(APPEND fletch_external_sources OpenCV) | |
|
||
# SQLite3 | ||
if (fletch_ENABLE_SQLite3 OR fletch_ENABLE_ALL_PACKAGES) | ||
set(SQLite3_SELECT_VERSION 3.35.2 CACHE STRING "Select the major version of GDAL to build.") | ||
set(SQLite3_SELECT_VERSION 3.35.2 CACHE STRING "Select the major version of SQLite3 to build.") | ||
set_property(CACHE SQLite3_SELECT_VERSION PROPERTY STRINGS "3.45.3" "3.35.2") | ||
message(STATUS "SQLite3 Select version: ${SQLite3_SELECT_VERSION}") | ||
if (SQLite3_SELECT_VERSION VERSION_EQUAL 3.45.3) | ||
|
@@ -461,9 +461,20 @@ endif() | |
list(APPEND fletch_external_sources GDAL) | ||
|
||
# PDAL | ||
set(PDAL_version 1.7.2) | ||
set(PDAL_url "https://data.kitware.com/api/v1/file/6622b24edf5a87675edbc0d0/download/pdal.${PDAL_version}.tar.gz") | ||
set(PDAL_md5 "a89710005fd54e6d2436955e2e542838") | ||
if (fletch_ENABLE_PDAL OR fletch_ENABLE_ALL_PACKAGES) | ||
set(PDAL_SELECT_VERSION 1.7.2 CACHE STRING "Select the major version of PDAL to build.") | ||
set_property(CACHE PDAL_SELECT_VERSION PROPERTY STRINGS "2.9.2" "1.7.2") | ||
message(STATUS "PDAL Select version: ${PDAL_SELECT_VERSION}") | ||
if (PDAL_SELECT_VERSION VERSION_EQUAL 2.9.2) | ||
set(PDAL_version "2.9.2") | ||
set(PDAL_url "https://data.kitware.com/api/v1/file/68d46bccaf4f192121e8168d/download/pdal.${PDAL_version}.tar.gz") | ||
set(PDAL_md5 "f01e30e3e6aeb441488de11df93dee2c") | ||
elseif (PDAL_SELECT_VERSION VERSION_EQUAL 1.7.2) | ||
set(PDAL_version "1.7.2") | ||
set(PDAL_url "https://data.kitware.com/api/v1/file/6622b24edf5a87675edbc0d0/download/pdal.${PDAL_version}.tar.gz") | ||
set(PDAL_md5 "a89710005fd54e6d2436955e2e542838") | ||
endif() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add an else here (example: SQLite3 above)? |
||
endif() | ||
list(APPEND fletch_external_sources PDAL) | ||
|
||
# GeographicLib | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.