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/raygui | |
Diffstat (limited to 'vcpkg/ports/raygui')
| -rw-r--r-- | vcpkg/ports/raygui/portfile.cmake | 14 | ||||
| -rw-r--r-- | vcpkg/ports/raygui/vcpkg.json | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/vcpkg/ports/raygui/portfile.cmake b/vcpkg/ports/raygui/portfile.cmake new file mode 100644 index 0000000..3c82971 --- /dev/null +++ b/vcpkg/ports/raygui/portfile.cmake @@ -0,0 +1,14 @@ +#header-only library +set(VCPKG_BUILD_TYPE release) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO raysan5/raygui + REF "${VERSION}" + SHA512 8e59889af6b6163b9ff9930ae79bdfaab5015e39279d1a50d3f74c0f50b12b2015fdf17016b04d2c4f66420f4e631b25a51ede5c1627dfcde269457f55f34ff1 + HEAD_REF master +) + +file(INSTALL "${SOURCE_PATH}/src/raygui.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include") + +vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") diff --git a/vcpkg/ports/raygui/vcpkg.json b/vcpkg/ports/raygui/vcpkg.json new file mode 100644 index 0000000..42ad32a --- /dev/null +++ b/vcpkg/ports/raygui/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "raygui", + "version": "4.0", + "description": "A simple and easy-to-use immediate-mode gui library", + "homepage": "https://github.com/raysan5/raylib", + "license": "Zlib" +} |