diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/staticjson | |
Diffstat (limited to 'vcpkg/ports/staticjson')
| -rw-r--r-- | vcpkg/ports/staticjson/portfile.cmake | 18 | ||||
| -rw-r--r-- | vcpkg/ports/staticjson/vcpkg.json | 19 |
2 files changed, 37 insertions, 0 deletions
diff --git a/vcpkg/ports/staticjson/portfile.cmake b/vcpkg/ports/staticjson/portfile.cmake new file mode 100644 index 0000000..f2eb9a9 --- /dev/null +++ b/vcpkg/ports/staticjson/portfile.cmake @@ -0,0 +1,18 @@ +vcpkg_minimum_required(VERSION 2022-10-12) +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO netheril96/StaticJSON + REF "v${VERSION}" + SHA512 7d346b69c736aac11eec4fce6650c394dd388f551a359e77f26d80d1b7aa67670be993abe16f2d834263a87a1c116502a96ab6253cb18cab3aaa7d88a6d4d809 + HEAD_REF master +) +vcpkg_cmake_configure( + SOURCE_PATH "${SOURCE_PATH}" + OPTIONS + -DSTATICJSON_ENABLE_TEST=OFF +) +vcpkg_cmake_install() +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") +file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") diff --git a/vcpkg/ports/staticjson/vcpkg.json b/vcpkg/ports/staticjson/vcpkg.json new file mode 100644 index 0000000..a37757a --- /dev/null +++ b/vcpkg/ports/staticjson/vcpkg.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", + "name": "staticjson", + "version": "1.0.0", + "description": "Fast, direct and static typed parsing of JSON with C++", + "homepage": "https://github.com/netheril96/StaticJSON", + "license": "MIT", + "dependencies": [ + "rapidjson", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |