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

18
externals/vcpkg/ports/sokol/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,18 @@
# header-only library
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO floooh/sokol
REF 425e906d2af8c976c30f7e925a303fea9f0bf879
SHA512 4606735b9466637f3b676402cc2d7ef96e4152836c901d7a84039c52951aec27922726de21a537e0fef2d2218f48e3a9a3c32c3bc67076c10d199f067f50dad9
HEAD_REF master
)
file(GLOB SOKOL_INCLUDE_FILES ${SOURCE_PATH}/*.h)
file(COPY ${SOKOL_INCLUDE_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include)
file(GLOB SOKOL_UTIL_INCLUDE_FILES ${SOURCE_PATH}/util/*.h)
file(COPY ${SOKOL_UTIL_INCLUDE_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/util)
# Handle copyright
configure_file(${SOURCE_PATH}/LICENSE ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright COPYONLY)

7
externals/vcpkg/ports/sokol/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,7 @@
{
"name": "sokol",
"version-string": "2019-09-09",
"port-version": 1,
"description": "Minimal cross-platform standalone C headers",
"homepage": "https://github.com/floooh/sokol"
}