aboutsummaryrefslogtreecommitdiff
path: root/ports/vtk/FindLibHaru.patch
diff options
context:
space:
mode:
authorAlexander Neumann <30894796+Neumann-A@users.noreply.github.com>2020-06-23 19:20:18 +0200
committerGitHub <noreply@github.com>2020-06-23 10:20:18 -0700
commit03766d0834c1ca8dea25ffafbe4fe1c60786a412 (patch)
treef1dfa6d4a06ed5129f12ce59296c50d2eb920fbb /ports/vtk/FindLibHaru.patch
parentaef838536ea3a08e3c1030ead553ca6456cc7fe3 (diff)
downloadvcpkg-03766d0834c1ca8dea25ffafbe4fe1c60786a412.tar.gz
vcpkg-03766d0834c1ca8dea25ffafbe4fe1c60786a412.zip
[CGNS/ParaView] Add new ports (#9960)
* [cgns] add port cgns * [paraview] add new port * [paraview] correct dependencies; disable catalyst * [VTK/ParaView] Make ParaView build * [paraview] add missing patch * [paraview] add cgns patch * [paraview] add qt plugin patches back in. Remove in the future * [vtk] slightly improved patches * [vtk] don't disable findPython * [paraview] add more features * [paraview] remove X11Extras from OSX * [vtk] make vtk workcorrectly with python and prepare for paraview with python * [paraview] Python fixes * [paraview] small bin -> lib replacement fix for static builds * [vtk] fix patch path * update baseline to exclude paraview for the time being on osx and linux. requires a fix in qt5-base linkage of libpq. * [paraview]try setting LD_LIBRARY_PATH for unix systems * [paraview] a bit of cleanup * update baseline * fix typo in baseline * [paraview] remove unnecessary patch * [vtk] replace custom patch with upstream patch * [paraview] cleanup in the portfile. * Update ports/paraview/CONTROL Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Diffstat (limited to 'ports/vtk/FindLibHaru.patch')
-rw-r--r--ports/vtk/FindLibHaru.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/ports/vtk/FindLibHaru.patch b/ports/vtk/FindLibHaru.patch
deleted file mode 100644
index 1b47a14b7..000000000
--- a/ports/vtk/FindLibHaru.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff --git a/CMake/FindLibHaru.cmake b/CMake/FindLibHaru.cmake
-index 7ef877a49..2a18e0694 100644
---- a/CMake/FindLibHaru.cmake
-+++ b/CMake/FindLibHaru.cmake
-@@ -43,6 +43,31 @@ if (LibHaru_FOUND)
- set(LibHaru_INCLUDE_DIRS "${LibHaru_INCLUDE_DIR}")
- set(LibHaru_LIBRARIES "${LibHaru_LIBRARY}")
-
-+ add_library(LibHaru::LibHaru UNKNOWN IMPORTED)
-+ set_target_properties(LibHaru::LibHaru PROPERTIES
-+ INTERFACE_INCLUDE_DIRECTORIES "${LibHaru_INCLUDE_DIR}")
-+ if(LZMA_LIBRARY_RELEASE)
-+ set_target_properties(LibHaru::LibHaru PROPERTIES
-+ IMPORTED_LOCATION_RELEASE "${LibHaru_LIBRARY_RELEASE}"
-+ IMPORTED_IMPLIB_RELEASE "${LibHaru_LIBRARY_RELEASE}")
-+ endif()
-+ if(LZMA_LIBRARY_DEBUG)
-+ set_target_properties(LibHaru::LibHaru PROPERTIES
-+ IMPORTED_LOCATION_DEBUG "${LibHaru_LIBRARY_DEBUG}"
-+ IMPORTED_IMPLIB_DEBUG "${LibHaru_LIBRARY_DEBUG}")
-+ endif()
-+
-+ # Guard against possible stupidity of VTK reading only LOCATION without configuration
-+ if(CMAKE_BUILD_TYPE MATCHES "Debug")
-+ set_target_properties(LibHaru::LibHaru PROPERTIES
-+ IMPORTED_LOCATION "${LibHaru_LIBRARY_DEBUG}"
-+ IMPORTED_IMPLIB "${LibHaru_LIBRARY_DEBUG}")
-+ else()
-+ set_target_properties(LibHaru::LibHaru PROPERTIES
-+ IMPORTED_LOCATION "${LibHaru_LIBRARY_RELEASE}"
-+ IMPORTED_IMPLIB "${LibHaru_LIBRARY_RELEASE}")
-+ endif()
-+
- if (NOT TARGET LibHaru::LibHaru)
- include(vtkDetectLibraryType)
- vtk_detect_library_type(libharu_library_type
- \ No newline at end of file