Skip to content

Commit 90675b1

Browse files
authored
Merge pull request #623 from dstoup/update-vtk-version
Update vtk version
2 parents 84189eb + 00c02b0 commit 90675b1

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

CMake/fletch-tarballs.cmake

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -429,23 +429,22 @@ list(APPEND fletch_external_sources CppDB)
429429
# VTK
430430
if (fletch_ENABLE_VTK OR fletch_ENABLE_ALL_PACKAGES)
431431
set(VTK_SELECT_VERSION 8.2 CACHE STRING "Select the version of VTK to build.")
432-
set_property(CACHE VTK_SELECT_VERSION PROPERTY STRINGS 6.2 8.0 8.2)
432+
set_property(CACHE VTK_SELECT_VERSION PROPERTY STRINGS 8.0 8.2 9.0)
433433
endif()
434434

435-
if (VTK_SELECT_VERSION VERSION_EQUAL 8.2)
435+
if (VTK_SELECT_VERSION VERSION_EQUAL 9.0)
436+
set(VTK_version 9.0.1)
437+
set(VTK_md5 "b3ba14d616c3b23583c42cffb585deac")
438+
elseif (VTK_SELECT_VERSION VERSION_EQUAL 8.2)
436439
set(VTK_version 8.2.0)
437-
set(VTK_md5 "94ba8959b56dcfa6bac996158669ac36")
440+
set(VTK_md5 "8af3307da0fc2ef8cafe4a312b821111")
438441
elseif (VTK_SELECT_VERSION VERSION_EQUAL 8.0)
439442
set(VTK_version 8.0.1)
440-
set(VTK_md5 "c248dbe8ffd9b74c6f41199e66d6c690") # v8.0.1
441-
elseif (VTK_SELECT_VERSION VERSION_EQUAL 6.2)
442-
# TODO: Remove when we remove support for OpenCV < 3.2
443-
set(VTK_version 6.2.0)
444-
set(VTK_md5 "2363432e25e6a2377e1c241cd2954f00") # v6.2
443+
set(VTK_md5 "692d09ae8fadc97b59d35cab429b261a") # v8.0.1
445444
elseif (fletch_ENABLE_VTK OR fletch_ENABLE_ALL_PACKAGES)
446445
message(ERROR "VTK Version ${VTK_SELECT_VERSION} Not Supported")
447446
endif()
448-
set(VTK_url "http://www.vtk.org/files/release/${VTK_SELECT_VERSION}/VTK-${VTK_version}.zip")
447+
set(VTK_url "http://www.vtk.org/files/release/${VTK_SELECT_VERSION}/VTK-${VTK_version}.tar.gz")
449448
list(APPEND fletch_external_sources VTK)
450449

451450
# VXL

Doc/release-notes/master.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Updates since v1.4.0
1515
* Update libtiff from 4.0.6 to 4.1.0
1616
* Update ZLib from 1.2.9 to 1.2.11
1717
* Update Eigen from 3.3.4 to 3.3.7
18+
* Add VTK version 9.0.1
1819

1920
Fixes since v1.4.0
2021
------------------

0 commit comments

Comments
 (0)