vcpkg/ports/raylib/vcpkg.json
tstraus b9218c4523
[raylib] Enable raylib on ARM (#33946)
* Enable raylib on ARM Macs

Raylib has been working on ARM based macOS for a while now. I've tested it on my own, and the raylib project has been building it in actions for a year now. See: https://github.com/raysan5/raylib/pull/2567

* Update version database

* Update raylib.json

---------

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
2023-09-25 23:54:05 -07:00

35 lines
701 B
JSON

{
"name": "raylib",
"version-semver": "4.5.0",
"port-version": 2,
"description": "A simple and easy-to-use library to enjoy videogames programming",
"homepage": "https://github.com/raysan5/raylib",
"license": "Zlib",
"supports": "!uwp",
"dependencies": [
{
"name": "glfw3",
"platform": "!(windows | emscripten)"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"use-audio"
],
"features": {
"hidpi": {
"description": "Support high-DPI displays"
},
"use-audio": {
"description": "Build raylib with audio module"
}
}
}