diff options
| author | Phil Christensen <philc@microsoft.com> | 2018-12-17 12:09:44 -0800 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2018-12-17 12:09:44 -0800 |
| commit | a6b12004c7b29353a68a142eaa7493ca997e05e7 (patch) | |
| tree | 2e89c8ee331e6f208e1081e15771d3aaa790b4e7 | |
| parent | da53f7c8d614709ee66b9f55fb9ee8aed00416f1 (diff) | |
| download | vcpkg-a6b12004c7b29353a68a142eaa7493ca997e05e7.tar.gz vcpkg-a6b12004c7b29353a68a142eaa7493ca997e05e7.zip | |
[vtk] add warning for libx11_xt_lib on linux
| -rw-r--r-- | ports/vtk/CONTROL | 2 | ||||
| -rw-r--r-- | ports/vtk/portfile.cmake | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ports/vtk/CONTROL b/ports/vtk/CONTROL index 01418b850..0eb485dcd 100644 --- a/ports/vtk/CONTROL +++ b/ports/vtk/CONTROL @@ -1,5 +1,5 @@ Source: vtk -Version: 8.1.0-5 +Version: 8.1.0-6 Description: Software system for 3D computer graphics, image processing, and visualization Build-Depends: zlib, libpng, tiff, libxml2, jsoncpp, glew, freetype, expat, hdf5, libjpeg-turbo, proj4, lz4, libtheora diff --git a/ports/vtk/portfile.cmake b/ports/vtk/portfile.cmake index 86616fd1f..7a5536163 100644 --- a/ports/vtk/portfile.cmake +++ b/ports/vtk/portfile.cmake @@ -1,3 +1,7 @@ +if(VCPKG_CMAKE_SYSTEM_NAME AND NOT VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") + message(WARNING "You will need to install Xorg dependencies to build vtk:\napt-get install libxt-dev\n") +endif() + include(vcpkg_common_functions) set(VTK_SHORT_VERSION "8.1") |
