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

5
externals/vcpkg/ports/mpi/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,5 @@
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
if (VCPKG_TARGET_IS_WINDOWS)
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/msmpi/mpi-wrapper.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME vcpkg-cmake-wrapper.cmake)
endif()

18
externals/vcpkg/ports/mpi/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,18 @@
{
"name": "mpi",
"version-string": "1",
"port-version": 3,
"description": "Message Passing Interface (MPI) is a standardized and portable message-passing standard designed by a group of researchers from academia and industry to function on a wide variety of parallel computing architectures. The standard defines the syntax and semantics of a core of library routines useful to a wide range of users writing portable message-passing programs in C, C++, and Fortran. There are several well-tested and efficient implementations of MPI, many of which are open-source or in the public domain.",
"license": null,
"supports": "!uwp",
"dependencies": [
{
"name": "msmpi",
"platform": "windows"
},
{
"name": "openmpi",
"platform": "!windows"
}
]
}