vcpkg/ports/fluidsynth/vcpkg.json
Pierre Wendling 12e66720d2
[fluidsynth] Disable implicit OpenMP (#30277)
* [fluidsynth] Disable implicit openmp.

OpenMP is enabled by default, which may lead to several issues:
- Inconsistent builds between whether the user has OpenMP installed on
their machine.
- Non functional pkg-config file for static builds if OpenMP is an
external library (e.g. using libomp on macOS).

* [fluidsynth] Update baseline.
2023-03-20 00:49:29 -07:00

49 lines
1.1 KiB
JSON

{
"name": "fluidsynth",
"version": "2.3.1",
"port-version": 2,
"description": "FluidSynth reads and handles MIDI events from the MIDI input device. It is the software analogue of a MIDI synthesizer. FluidSynth can also play midifiles using a Soundfont.",
"homepage": "https://github.com/FluidSynth/fluidsynth",
"license": "LGPL-2.1-or-later",
"dependencies": [
{
"name": "alsa",
"platform": "linux"
},
{
"name": "fluidsynth",
"host": true,
"default-features": false,
"features": [
"buildtools"
]
},
"glib",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"buildtools": {
"description": "Build tools gentables"
},
"sndfile": {
"description": "Enable rendering to file and SF3 support",
"dependencies": [
{
"name": "libsndfile",
"default-features": false,
"features": [
"external-libs"
]
}
]
}
}
}