mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 00:19:10 +08:00
8c7e8df015
* [cgns] update to 4.2.0 * [vtk-m] update to 1.6.0 * [vtk] Update to 9.0.1-pv5.9.1 - VTK update to match release version of ParaView * [ParaView] Update to 5.9.1 * version stuff * fix automatic svg linkage in static builds * update qt5-svg * revisit vtk - fix build with vtk-m 1.6 - remove unused patches - remove comments * bump version * remove two commented lines * version stuff * remove old PR version Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
60 lines
2.7 KiB
CMake
60 lines
2.7 KiB
CMake
# VENDORED DEPENDENCIES!
|
|
# TODO: Should be replaced in the future with VCPKG internal versions
|
|
# add_subdirectory(thirdparty/diy)
|
|
# add_subdirectory(thirdparty/lodepng)
|
|
# if(VTKm_ENABLE_LOGGING)
|
|
# add_subdirectory(thirdparty/loguru)
|
|
# endif()
|
|
# add_subdirectory(thirdparty/optionparser)
|
|
# add_subdirectory(thirdparty/taotuple)
|
|
# add_subdirectory(thirdparty/lcl)
|
|
|
|
vcpkg_check_features (OUT_FEATURE_OPTIONS OPTIONS
|
|
FEATURES
|
|
cuda VTKm_ENABLE_CUDA
|
|
omp VTKm_ENABLE_OPENMP
|
|
tbb VTKm_ENABLE_TBB
|
|
mpi VTKm_ENABLE_MPI
|
|
double VTKm_USE_DOUBLE_PRECISION
|
|
)
|
|
|
|
if("cuda" IN_LIST FEATURES AND NOT ENV{CUDACXX})
|
|
set(ENV{CUDACXX} "$ENV{CUDA_PATH}/bin/nvcc")
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
message(STATUS "Feature CUDA forces static build!")
|
|
endif()
|
|
set(VCPKG_LIBRARY_LINKAGE "static") # CUDA forces static build.
|
|
endif()
|
|
|
|
list(APPEND OPTIONS -DVTKm_ENABLE_RENDERING=ON)
|
|
list(APPEND OPTIONS -DVTKm_ENABLE_DEVELOPER_FLAGS=OFF)
|
|
list(APPEND OPTIONS -DVTKm_ENABLE_CPACK=OFF)
|
|
list(APPEND OPTIONS -DVTKm_USE_DEFAULT_TYPES_FOR_VTK=ON)
|
|
# For port customizations on unix systems.
|
|
# Please feel free to make these port features if it makes any sense
|
|
#list(APPEND OPTIONS -DVTKm_ENABLE_GL_CONTEXT=ON) # or
|
|
#list(APPEND OPTIONS -DVTKm_ENABLE_EGL_CONTEXT=ON) # or
|
|
#list(APPEND OPTIONS -DVTKm_ENABLE_OSMESA_CONTEXT=ON)
|
|
list(APPEND OPTIONS -DBUILD_TESTING=OFF)
|
|
|
|
vcpkg_from_gitlab(GITLAB_URL "https://gitlab.kitware.com"
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO vtk/vtk-m
|
|
REF 13a117e0e8935eef3f320b5a1cd71d9911ad9853 # v1.6.0 Version is strongly locked to VTK 9.0. Upgrading will most likly brake the VTK build
|
|
SHA512 54f7f52ab4ee7954b6a303ffd3b8bcb18105b5d2fd8ed54b4e487fce2ebfbc51507e632189f775c79eea22ad24bd56bca401ddd679fc03d787342dd33d2ba18b
|
|
FILE_DISAMBIGUATOR 1)
|
|
vcpkg_configure_cmake(SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS ${OPTIONS})
|
|
vcpkg_install_cmake()
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/vtkm-1.6 TARGET_PATH share/vtkm)
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/share/vtkm/VTKmConfig.cmake _contents)
|
|
string(REPLACE [[set_and_check(VTKm_CONFIG_DIR "${PACKAGE_PREFIX_DIR}/lib/cmake/vtkm-1.6")]] [[set_and_check(VTKm_CONFIG_DIR "${PACKAGE_PREFIX_DIR}/share/vtkm")]] _contents ${_contents})
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/vtkm/VTKmConfig.cmake ${_contents})
|
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
|
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|