early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

22
externals/vcpkg/ports/blaze/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,22 @@
vcpkg_from_bitbucket(
OUT_SOURCE_PATH SOURCE_PATH
REPO blaze-lib/blaze
REF v3.8.1
SHA512 6dfd3cb46d796b94cc44a30c4cd5ebfb366d2eb312d75a28787cacb4636df52e4e4e3dce3d9501bf2c07e7fd3621e8ce7f9ffa61a950a4146375b12d75d4872b
HEAD_REF master
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBLAZE_SMP_THREADS=OpenMP
)
vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH share/blaze/cmake)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

19
externals/vcpkg/ports/blaze/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,19 @@
{
"name": "blaze",
"version": "3.8.1",
"description": "Blaze is an open-source, high-performance C++ math library for dense and sparse arithmetic.",
"homepage": "https://bitbucket.org/blaze-lib/blaze",
"license": "BSD-3-Clause",
"dependencies": [
"boost-exception",
"lapack",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}