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

31
externals/vcpkg/ports/yato/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,31 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO agruzdev/Yato
REF 9b5a49f6ec4169b67b9e5ffd11fdae9c238b0a3d
SHA512 41962839cd13a314a17fef5f6065d7c3ed9967832039ca31993105685d584307d00f17c1514f4acf855a71fd884a1104c2d9c6a4461be5d2d7cfdc50b1ea7bdb
HEAD_REF master
)
# Copy all header files
file(COPY "${SOURCE_PATH}/include/yato"
DESTINATION "${CURRENT_PACKAGES_DIR}/include"
)
file(COPY "${SOURCE_PATH}/modules/actors/yato"
DESTINATION "${CURRENT_PACKAGES_DIR}/include"
)
file(COPY "${SOURCE_PATH}/modules/config/yato"
DESTINATION "${CURRENT_PACKAGES_DIR}/include"
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DYATO_BUILD_TESTS:BOOL=OFF
-DYATO_BUILD_ACTORS:BOOL=ON
-DYATO_BUILD_CONFIG:BOOL=ON
)
vcpkg_cmake_build()
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

13
externals/vcpkg/ports/yato/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,13 @@
{
"name": "yato",
"version-date": "2022-03-06",
"description": "Modern C++14 containers and utilities, actors system, typesafe config",
"license": "Apache-2.0",
"supports": "!(windows & arm)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}