vcpkg/ports/raylib/vcpkg.json
LilyWangLL 75d2a36b8e
[raylib] Fix cannot find -lglfw on Linux (#23348)
* [raylib] Fix cannot find -lglfw

* update version

* update version

Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-03-11 11:21:42 -08:00

35 lines
694 B
JSON

{
"name": "raylib",
"version-semver": "4.0.0",
"port-version": 3,
"description": "A simple and easy-to-use library to enjoy videogames programming",
"homepage": "https://github.com/raysan5/raylib",
"license": "Zlib",
"supports": "!(arm | uwp)",
"dependencies": [
{
"name": "glfw3",
"platform": "!windows"
},
{
"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"
}
}
}