furnace/extern/libsndfile-modified/vcpkg.json
tildearrow 061991fe60 desubmodulize libsndfile - PLEASE READ
it appears a one-character typo in the cmake_minimum_required line prevents it from compiling under CMake 4.0.
in order to fix that, I had to take this thing out of submodules...

it is recommended to do this after you pull;

git submodule deinit extern/libsndfile
2025-04-02 15:09:53 -05:00

40 lines
1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "libsndfile",
"description": "A library for reading and writing audio files",
"version-semver": "1.2.0",
"default-features": [
"external-libs",
"mpeg"
],
"features": {
"external-libs": {
"description": "Enable FLAC, Vorbis, and Opus codecs",
"dependencies": [
"libvorbis",
"libflac",
"opus"
]
},
"mpeg": {
"description": "Enable MPEG codecs",
"dependencies": [
"mpg123",
"mp3lame"
]
},
"regtest": {
"description": "Build regtest",
"dependencies": [
"sqlite3"
]
},
"experimental": {
"description": "Enable experimental code",
"dependencies": [
"speex"
]
}
}
}