Created
June 12, 2026 22:13
-
-
Save i8degrees/ddb35c30de6511b9eaef27796a0dda18 to your computer and use it in GitHub Desktop.
vcpkg.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - `vcpkg.json` | |
| ```shell | |
| { | |
| "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | |
| "port-version": 0, | |
| "version-semver": "0.13.1", | |
| "name": "nomlib", | |
| "description": "C++11 game engine", | |
| "license": "BSD-2-Clause", | |
| "homepage": "https://nomlib.479831.xyz/#", | |
| "documentation": "https://nomlib.479831.xyz/docs/#", | |
| "maintainers": [ | |
| "Jeffrey Carpenter <1329364+i8degrees@users.noreply.github.com" | |
| ], | |
| "supports": "(osx & x64), (linux & x64), (windows & x86 & static)", | |
| "dependencies": [ | |
| { | |
| "name": "vcpkg-cmake-config", | |
| "host": true | |
| }, | |
| "sdl2", | |
| { | |
| "name": "sdl2", | |
| "version>=": "2.0.4", | |
| "features": ["x11"], | |
| "platform": "(osx & x64), (linux & x64), (windows & x86 & static)" | |
| }, | |
| "sdl2-image", { | |
| "name": "sdl2-image", | |
| "version>=": "2.0.1", | |
| "features": ["tiff"], | |
| "platform": "(osx & x64), (linux & x64), (windows & x86 & static)" | |
| }, | |
| "sdl2-ttf", { | |
| "name": "sdl2-ttf", | |
| "version>=": "2.0.14", | |
| "platform": "(osx & x64), (linux & x64), (windows & x86 & static)", | |
| "features": ["harfbuzz"] | |
| }, | |
| "openal-soft", { | |
| "name": "openal-soft", | |
| "version>=": "1.17.2", | |
| "features": ["pipewire", "pulseaudio"], | |
| "platform": "(osx & x64), (linux & x64), (windows & x86 & static)" | |
| }, | |
| "libsndfile", { | |
| "name": "libsndfile", | |
| "version>=": "1.2.2", | |
| "features": ["external-libs"], | |
| "platform": "(osx & x64), (linux & x64), (windows & x86 & static)" | |
| } | |
| ], | |
| "overrides": [ | |
| { | |
| "name": "openal-soft", | |
| "version": "1.25.1" | |
| }, | |
| { | |
| "name": "sdl2", | |
| "version": "2.32.10" | |
| }, | |
| { | |
| "name": "sdl2-image", | |
| "version": "2.8.12" | |
| }, | |
| { | |
| "name": "sdl2-ttf", | |
| "version": "2.24.0" | |
| } | |
| ] | |
| } | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment