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

16
externals/vcpkg/ports/nanosvg/CMakeLists.txt vendored Executable file
View File

@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.11)
project(nanosvg NONE)
set(NANOSVG_HEADERS src/nanosvg.h src/nanosvgrast.h)
add_library(nanosvg INTERFACE)
set_target_properties(nanosvg PROPERTIES PUBLIC_HEADER "${NANOSVG_HEADERS}")
install(TARGETS nanosvg
EXPORT nanosvgTargets
PUBLIC_HEADER DESTINATION include)
install(EXPORT nanosvgTargets
FILE unofficial-nanosvg-config.cmake
NAMESPACE unofficial::nanosvg::
DESTINATION share/unofficial-nanosvg)

15
externals/vcpkg/ports/nanosvg/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,15 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO memononen/nanosvg
REF 03042a6297399379198f98eb625ff8902bd84784
SHA512 163f205e81e830e8b2512ec1faa15ebaf82138fc8bd881ccfc5f19896df75e8cf77ccd20892fccd0fd3e5d6358438e6f3075fd4e6a4c4b064107451265c9f874
HEAD_REF master
)
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
set(VCPKG_BUILD_TYPE "release") # header-only
vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
vcpkg_cmake_install()
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

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

@@ -0,0 +1,13 @@
{
"name": "nanosvg",
"version-date": "2022-04-29",
"description": "NanoSVG is a simple stupid single-header-file SVG parse. The output of the parser is a list of cubic bezier shapes..",
"homepage": "https://github.com/memononen/nanosvg",
"license": "Zlib",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}