From a5bf54a2c5b793b21755ba641737572ad6a51b67 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Sun, 28 Jun 2020 21:10:16 -0700 Subject: [PATCH 01/19] [paraview] Fix linux build --- ports/paraview/CONTROL | 2 +- ports/paraview/portfile.cmake | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ports/paraview/CONTROL b/ports/paraview/CONTROL index 5f1631462f5ff1..d6d871fef3ed71 100644 --- a/ports/paraview/CONTROL +++ b/ports/paraview/CONTROL @@ -1,5 +1,5 @@ Source: paraview -Version: 5.8.0-1 +Version: 5.8.0-2 Homepage: https://www.paraview.org/ Description: VTK-based Data Analysis and Visualization Application Build-Depends: vtk[core,paraview], protobuf, cgns, boost-core, boost-format, boost-algorithm diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 4e706453cc37bd..53923e24c8c2a9 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -66,6 +66,9 @@ if("python" IN_LIST FEATURES) #VTK_PYTHON_SITE_PACKAGES_SUFFIX should be set to the install dir of the site-packages endif() +string(APPEND VCPKG_C_FLAGS " -DH5_USE_110_API") +string(APPEND VCPKG_CXX_FLAGS " -DH5_USE_110_API") + vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} PREFER_NINJA # Disable this option if project cannot be built with Ninja From c64feb991c8350af4c187694b9d7d0b417fe0db7 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Sun, 28 Jun 2020 23:04:56 -0700 Subject: [PATCH 02/19] re-trigger CI test --- ports/vtk/CONTROL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/vtk/CONTROL b/ports/vtk/CONTROL index 0e494fe6d463cf..57e7f67e57daed 100644 --- a/ports/vtk/CONTROL +++ b/ports/vtk/CONTROL @@ -1,5 +1,5 @@ Source: vtk -Version: 9.0-4 +Version: 9.0-5 Description: Software system for 3D computer graphics, image processing, and visualization Homepage: https://github.com/Kitware/VTK Build-Depends: zlib, libpng, tiff, libxml2, jsoncpp, glew, freetype, expat, hdf5[core], libjpeg-turbo, proj4, lz4, liblzma, libtheora, eigen3, double-conversion, pugixml, libharu[notiffsymbols], sqlite3, netcdf-c, utfcpp, libogg, pegtl-2 From d451e930b81e1d7e3e98e495191e712413f678a2 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 01:08:31 -0700 Subject: [PATCH 03/19] [paraview] Set tools as a feature --- ports/paraview/CONTROL | 3 +++ ports/paraview/add-tools-option.patch | 15 +++++++++++++++ ports/paraview/portfile.cmake | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 ports/paraview/add-tools-option.patch diff --git a/ports/paraview/CONTROL b/ports/paraview/CONTROL index d6d871fef3ed71..0b8f0b34e2a93a 100644 --- a/ports/paraview/CONTROL +++ b/ports/paraview/CONTROL @@ -20,6 +20,9 @@ Feature: mpi Description: enables cuda within paraview Build-Depends: hdf5[core,parallel], vtk[core, mpi] +Feature: tools +Description: Build paraview tools + Feature: all_modules Description: enables the build of all paraview modules Build-Depends: gdal, pdal, ffmpeg, laszip diff --git a/ports/paraview/add-tools-option.patch b/ports/paraview/add-tools-option.patch new file mode 100644 index 00000000000000..86ba2c5a675694 --- /dev/null +++ b/ports/paraview/add-tools-option.patch @@ -0,0 +1,15 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 8b33b25..10cadda 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -730,7 +730,10 @@ if (PARAVIEW_ENABLE_WEB) + @ONLY) + endif () + ++option(PARAVIEW_BUILD_TOOLS "Build paraview tools" OFF) ++if (PARAVIEW_BUILD_TOOLS) + add_subdirectory(Clients) ++endif() + + if (PARAVIEW_USE_PYTHON) + add_subdirectory(Wrapping/Python) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 53923e24c8c2a9..d32c4ea8fd9671 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -6,6 +6,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "mpi" PARAVIEW_USE_MPI #untested "vtkm" PARAVIEW_USE_VTKM "python" PARAVIEW_USE_PYTHON + "tools" PARAVIEW_BUILD_TOOLS ) vcpkg_from_github( @@ -22,6 +23,7 @@ vcpkg_from_github( qt_static_plugins.patch # Remove with Qt version > 5.14 python_include.patch python_wrapper.patch + add-tools-option.patch ) if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") From 3c2aa0ca9c179a0f3b96fb515f5ed222349db77b Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 01:46:33 -0700 Subject: [PATCH 04/19] Revert c64feb991c8350af4c187694b9d7d0b417fe0db7 --- ports/vtk/CONTROL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/vtk/CONTROL b/ports/vtk/CONTROL index 57e7f67e57daed..0e494fe6d463cf 100644 --- a/ports/vtk/CONTROL +++ b/ports/vtk/CONTROL @@ -1,5 +1,5 @@ Source: vtk -Version: 9.0-5 +Version: 9.0-4 Description: Software system for 3D computer graphics, image processing, and visualization Homepage: https://github.com/Kitware/VTK Build-Depends: zlib, libpng, tiff, libxml2, jsoncpp, glew, freetype, expat, hdf5[core], libjpeg-turbo, proj4, lz4, liblzma, libtheora, eigen3, double-conversion, pugixml, libharu[notiffsymbols], sqlite3, netcdf-c, utfcpp, libogg, pegtl-2 From 386ff93f812e76bc14b428eee80d0f3132a502e1 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 01:56:21 -0700 Subject: [PATCH 05/19] update baseline --- scripts/ci.baseline.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt index e1cf3fa9f1c969..e77a6c4cdf1053 100644 --- a/scripts/ci.baseline.txt +++ b/scripts/ci.baseline.txt @@ -1377,8 +1377,6 @@ pangomm:x64-osx=fail pangomm:x64-windows=ignore pangomm:x86-windows=ignore pangomm:arm64-windows=fail -# Missing symbols will, probably fix itself with Qt >= 5.15 -paraview:x64-osx=fail parmetis:x64-linux=fail parmetis:x64-osx=fail pcre2:arm-uwp=fail From a809f08d8ed59d7d7d8863d923c5fdb3904a2403 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 03:04:41 -0700 Subject: [PATCH 06/19] Add error message. --- ports/paraview/portfile.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index d32c4ea8fd9671..2d672b4e9f7f86 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -1,5 +1,9 @@ set(VERSION 5.8) +if ("tools" IN_LIST FEATURES) + mesage(FATAL_ERROR "Feature tools are currently not supported, waiting for fix it.") +endif() + vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested From d06308faa15a2f03fa1decd033832b15d673d0b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:46:54 +0800 Subject: [PATCH 07/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 2d672b4e9f7f86..4109954e86a5f6 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -8,7 +8,12 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested - "vtkm" PARAVIEW_USE_VTKM + +if ("tools" IN_LIST FEATURES) + message(FATAL_ERROR "Feature tools is not available now, waiting for fix. ") +endif() + + "python" PARAVIEW_USE_PYTHON "tools" PARAVIEW_BUILD_TOOLS ) From 8bda4cc0c45807488645e1822f71b6398652204c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:50:36 +0800 Subject: [PATCH 08/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 4109954e86a5f6..3fa85816da5e5c 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -9,7 +9,6 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested -if ("tools" IN_LIST FEATURES) message(FATAL_ERROR "Feature tools is not available now, waiting for fix. ") endif() From fd67044d749fd763a1f59effb16d64fa77fd28c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:50:57 +0800 Subject: [PATCH 09/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 3fa85816da5e5c..0fbb5537b2b1f5 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -9,7 +9,6 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested - message(FATAL_ERROR "Feature tools is not available now, waiting for fix. ") endif() From 197df968be385c56f5c0660009459156b17e0e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:51:10 +0800 Subject: [PATCH 10/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 0fbb5537b2b1f5..153b1e8946963d 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -9,7 +9,6 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested -endif() "python" PARAVIEW_USE_PYTHON From 9d6b123b633abd0bdbadc7a230dcd79b9b910e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:51:33 +0800 Subject: [PATCH 11/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 153b1e8946963d..ebd0883e756030 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -8,7 +8,6 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested - "python" PARAVIEW_USE_PYTHON From d59b86c937de651185cf46028da0017749ec0c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:51:49 +0800 Subject: [PATCH 12/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index ebd0883e756030..6715b19a6c7855 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -8,7 +8,6 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested - "python" PARAVIEW_USE_PYTHON "tools" PARAVIEW_BUILD_TOOLS From 5a9ed9276a119814cb193529cf86e94987aedfea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=C2=B7Boos=C2=B7Yu?= <47264268+JackBoosY@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:54:49 +0800 Subject: [PATCH 13/19] Update ports/paraview/portfile.cmake --- ports/paraview/portfile.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 6715b19a6c7855..2d672b4e9f7f86 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -8,7 +8,7 @@ vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested "mpi" PARAVIEW_USE_MPI #untested - + "vtkm" PARAVIEW_USE_VTKM "python" PARAVIEW_USE_PYTHON "tools" PARAVIEW_BUILD_TOOLS ) From acd847c55d4f7aca20fd0b69606a6bc7e25e902c Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal Date: Mon, 29 Jun 2020 13:52:48 -0700 Subject: [PATCH 14/19] Remove duplicate fix-using-hdf5.patch. --- ports/paraview/fix-using-hdf5.patch | 105 ---------------------------- ports/paraview/portfile.cmake | 1 - 2 files changed, 106 deletions(-) delete mode 100644 ports/paraview/fix-using-hdf5.patch diff --git a/ports/paraview/fix-using-hdf5.patch b/ports/paraview/fix-using-hdf5.patch deleted file mode 100644 index 7d547e77e90e32..00000000000000 --- a/ports/paraview/fix-using-hdf5.patch +++ /dev/null @@ -1,105 +0,0 @@ -diff --git a/databases/readers/M3DC1/avtM3DC1FileFormat.C b/databases/readers/M3DC1/avtM3DC1FileFormat.C -index 642be7e..d044b87 100644 ---- a/databases/readers/M3DC1/avtM3DC1FileFormat.C -+++ b/databases/readers/M3DC1/avtM3DC1FileFormat.C -@@ -2051,10 +2051,10 @@ avtM3DC1FileFormat::linkIterator(hid_t locId, const char* name, - switch (linfo->type) { - case H5L_TYPE_HARD: { - -- H5O_info_t objinfo; -+ H5O_info1_t objinfo; - - /* Stat the object */ -- if(H5Oget_info_by_name(locId, name, &objinfo, H5P_DEFAULT) < 0) { -+ if(H5Oget_info_by_name1(locId, name, &objinfo, H5P_DEFAULT) < 0) { - debug5 << "visitLinks() - unable to open object with name " <type) { - case H5L_TYPE_HARD: { - -- H5O_info_t objinfo; -+ H5O_info1_t objinfo; - - /* Stat the object */ -- if(H5Oget_info_by_name(locId, name, &objinfo, H5P_DEFAULT) < 0) { -+ if(H5Oget_info_by_name1(locId, name, &objinfo, H5P_DEFAULT) < 0) { - debug5 << "visitLinks() - unable to open object with name " <type) { - case H5L_TYPE_HARD: { - -- H5O_info_t objinfo; -+ H5O_info1_t objinfo; - - /* Stat the object */ -- if(H5Oget_info_by_name(locId, name, &objinfo, H5P_DEFAULT) < 0) { -+ if(H5Oget_info_by_name1(locId, name, &objinfo, H5P_DEFAULT) < 0) { - VsLog::errorLog() <<"VsFilter::visitLinks() - unable to open object with name " < Date: Mon, 29 Jun 2020 17:59:45 -0700 Subject: [PATCH 15/19] Add dependency embree3 on linux and test feature tools --- ports/paraview/CONTROL | 3 ++- ports/paraview/portfile.cmake | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/ports/paraview/CONTROL b/ports/paraview/CONTROL index 0b8f0b34e2a93a..eb5928fc2bdca2 100644 --- a/ports/paraview/CONTROL +++ b/ports/paraview/CONTROL @@ -2,7 +2,8 @@ Source: paraview Version: 5.8.0-2 Homepage: https://www.paraview.org/ Description: VTK-based Data Analysis and Visualization Application -Build-Depends: vtk[core,paraview], protobuf, cgns, boost-core, boost-format, boost-algorithm +Build-Depends: vtk[core,paraview], protobuf, cgns, boost-core, boost-format, boost-algorithm, embree3(linux) +Default-Features: tools Feature: vtkm Description: enables vtkm for the build of paraview diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index cef36deb74f6ed..1d1f01e6022d17 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -1,9 +1,5 @@ set(VERSION 5.8) -if ("tools" IN_LIST FEATURES) - mesage(FATAL_ERROR "Feature tools are currently not supported, waiting for fix it.") -endif() - vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested From f37196999aa74d629dc01fedadb31b4a5adb5cbc Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 19:33:19 -0700 Subject: [PATCH 16/19] remove default feature --- ports/paraview/CONTROL | 1 - 1 file changed, 1 deletion(-) diff --git a/ports/paraview/CONTROL b/ports/paraview/CONTROL index eb5928fc2bdca2..56aa3cbaadfa49 100644 --- a/ports/paraview/CONTROL +++ b/ports/paraview/CONTROL @@ -3,7 +3,6 @@ Version: 5.8.0-2 Homepage: https://www.paraview.org/ Description: VTK-based Data Analysis and Visualization Application Build-Depends: vtk[core,paraview], protobuf, cgns, boost-core, boost-format, boost-algorithm, embree3(linux) -Default-Features: tools Feature: vtkm Description: enables vtkm for the build of paraview From 5b082f15a808a4228ccecbbde19b3a787f240bb6 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 21:35:13 -0700 Subject: [PATCH 17/19] update baseline --- scripts/ci.baseline.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt index e77a6c4cdf1053..e1cf3fa9f1c969 100644 --- a/scripts/ci.baseline.txt +++ b/scripts/ci.baseline.txt @@ -1377,6 +1377,8 @@ pangomm:x64-osx=fail pangomm:x64-windows=ignore pangomm:x86-windows=ignore pangomm:arm64-windows=fail +# Missing symbols will, probably fix itself with Qt >= 5.15 +paraview:x64-osx=fail parmetis:x64-linux=fail parmetis:x64-osx=fail pcre2:arm-uwp=fail From 48942442ac5f3aa600fd94b705fe11c71407022f Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 22:35:09 -0700 Subject: [PATCH 18/19] update baseline --- scripts/ci.baseline.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ci.baseline.txt b/scripts/ci.baseline.txt index e1cf3fa9f1c969..e77a6c4cdf1053 100644 --- a/scripts/ci.baseline.txt +++ b/scripts/ci.baseline.txt @@ -1377,8 +1377,6 @@ pangomm:x64-osx=fail pangomm:x64-windows=ignore pangomm:x86-windows=ignore pangomm:arm64-windows=fail -# Missing symbols will, probably fix itself with Qt >= 5.15 -paraview:x64-osx=fail parmetis:x64-linux=fail parmetis:x64-osx=fail pcre2:arm-uwp=fail From f05103afa1c2e0d7cdfd6b785deb75c8a5cb0cf7 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Mon, 29 Jun 2020 22:35:38 -0700 Subject: [PATCH 19/19] Add error message when building paraview[tools]:x64-osx --- ports/paraview/portfile.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ports/paraview/portfile.cmake b/ports/paraview/portfile.cmake index 1d1f01e6022d17..7da8d3bb475394 100644 --- a/ports/paraview/portfile.cmake +++ b/ports/paraview/portfile.cmake @@ -1,5 +1,9 @@ set(VERSION 5.8) +if ("tools" IN_LIST FEATURES AND VCPKG_TARGET_IS_OSX) + mesage(FATAL_ERROR "Feature tools are currently not supported.") +endif() + vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS "cuda" PARAVIEW_USE_CUDA #untested; probably only affects internal VTK build so it does nothing here "all_modules" PARAVIEW_BUILD_ALL_MODULES #untested