Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

Commit

Permalink
install compositing lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mclarsen committed Feb 20, 2020
1 parent fb79edc commit 5ee3085
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion scripts/uberenv/packages/vtkh/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ class Vtkh(Package, CudaPackage):
and DIY2 to provide a toolkit with hybrid parallel capabilities."""

homepage = "https://github.com/Alpine-DAV/vtk-h"
url = "https://github.com/Alpine-DAV/vtk-h/releases/download/v0.5.0/vtkh-v0.5.0.tar.gz"
url = "https://github.com/Alpine-DAV/vtk-h/releases/download/v0.5.2/vtkh-v0.5.2.tar.gz"
git = "https://github.com/Alpine-DAV/vtk-h.git"

maintainers = ['cyrush']

version('develop', branch='develop', submodules=True)
version('0.5.2', sha256="879212bc95ca296bfa66ad14a85d43ddacf0d5f6a164cfba177345ed05f7ba82")
version('0.5.1', sha256="f15353ca7bb9e96c6827395c3710d05603efe8d1")
version('0.5.0', sha256="9014a8a61a8d7ff636866c6e3b1ebb918ff23fa67cf8d4de801c4a2981de8c96")

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# avoid warnings for project commands w/o VERSION
cmake_policy(SET CMP0048 NEW)

project(VTKh VERSION "0.4.0")
project(VTKh VERSION "0.5.2")

set(VTKh_EXPORT_NAME "VTKhTargets")
if (NOT DEFINED VTKh_INSTALL_INCLUDE_DIR)
Expand Down
4 changes: 2 additions & 2 deletions src/vtkh/compositing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if (ENABLE_SERIAL)
)

# Install headers
install(FILES ${vtkh_rendering_headers}
install(FILES ${vtkh_compositing_headers}
DESTINATION ${VTKh_INSTALL_INCLUDE_DIR}/vtkh/compositing)
endif()

Expand Down Expand Up @@ -115,7 +115,7 @@ if (MPI_FOUND)
RUNTIME DESTINATION ${VTKh_INSTALL_BIN_DIR})

# Install headers
install(FILES ${ParallelHeaders}
install(FILES ${vtkh_compositing_mpi_headers}
DESTINATION ${VTKh_INSTALL_INCLUDE_DIR}/vtkh/compositing)

endif()

0 comments on commit 5ee3085

Please sign in to comment.