diff options
| author | Tetsuya Hayashi <tetsu.h@gmail.com> | 2019-03-12 05:15:49 +0900 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2019-03-11 13:15:49 -0700 |
| commit | 3eb244085f641e70ef9ac68c4933a9597242fc23 (patch) | |
| tree | d20efdb4b8eba5de8c11ad01bde4528ff89132a0 | |
| parent | 7dcf30197ec2988eb6725e920ffa6527bce3a150 (diff) | |
| download | vcpkg-3eb244085f641e70ef9ac68c4933a9597242fc23.tar.gz vcpkg-3eb244085f641e70ef9ac68c4933a9597242fc23.zip | |
[itk] Fixes broken dependencies between ITK and VTK (#5615)
* Fixes broken dependencies between ITK and VTK
restore a line of ed9357a overrided by aa560f1
fixes #5614
* [itk] Fixes broken dependencies between ITK and VTK
| -rw-r--r-- | ports/itk/CONTROL | 2 | ||||
| -rw-r--r-- | ports/itk/portfile.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/itk/CONTROL b/ports/itk/CONTROL index 70091bd1f..2957c8742 100644 --- a/ports/itk/CONTROL +++ b/ports/itk/CONTROL @@ -1,5 +1,5 @@ Source: itk -Version: 4.13.0-1 +Version: 4.13.0-2 Description: Insight Segmentation and Registration Toolkit (ITK) is used for image processing and analysis. Build-Depends: double-conversion, libjpeg-turbo, zlib, libpng, tiff, expat, hdf5[cpp] diff --git a/ports/itk/portfile.cmake b/ports/itk/portfile.cmake index ea53f0fd8..6d0445caf 100644 --- a/ports/itk/portfile.cmake +++ b/ports/itk/portfile.cmake @@ -55,7 +55,7 @@ vcpkg_configure_cmake( #-DITK_PYTHON_VERSION=3 -DITK_USE_SYSTEM_HDF5=ON - -DModule_ITKVtkGlue=ON # this option requires VTK to be a dependency in CONTROL file. VTK depends on HDF5! + -DModule_ITKVtkGlue=${ITKVtkGlue} # this option requires VTK to be a dependency in CONTROL file. VTK depends on HDF5! -DModule_IOSTL=ON # example how to turn on a non-default module -DModule_MorphologicalContourInterpolation=ON # example how to turn on a remote module |
