mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 14:39:32 +08:00
b9218c4523
* 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>
35 lines
701 B
JSON
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"
|
|
}
|
|
}
|
|
}
|