mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 18:11:44 +08:00
3bc5ff7f7a
* [juce] add port for JUCE
* [juce] install linux dependencies in ci
* [juce] fix tool installation and cleaning
* [juce] fix freetype includes for juce graphics
* [juce] fix freetype includes for juceaide
* [juce] simplify the freetype find check
* [juce] use find_path in addition for freetype
* [juce] allow setting freetype usage for juceaide
* [juce] forward freetype setting + guard with option
* [juce] do not use freetype for console apps
* [juce] freetype is needed for console apps on Linux
* [juce] link freetype on Linux for juce_build_tools
* [juce] forward-vcpkg-toolchain for Builder
* [juce] fix linux dependencies + forward vcpkg args
* [juce] fix installation of juce tools and juce extra tools
* [juce] use jack2 only on Linux
* [juce] add docs for targets and descriptions
* [juce] fix installation path references in CMake
* [juce] do not move Cmake files + fix tool install dir
* [juce] remove libwebkit2gtk-4.0-dev from ci
* [juce] add ONLY_STATIC_LIBRARY to the port for windows
* [juce] fix the CMake path installation paths
* Revert "[juce] add ONLY_STATIC_LIBRARY to the port for windows"
This reverts commit 0eb5c6f1c6
.
* [juce] improve linux dependencies find/linkage
* [juce] remove libxcomposite-dev from vm
106 lines
2.2 KiB
JSON
106 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
|
|
"name": "juce",
|
|
"version": "7.0.9",
|
|
"description": "Open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, AAX and LV2 audio plug-ins and plug-in hosts",
|
|
"homepage": "https://juce.com",
|
|
"license": null,
|
|
"supports": "!android & !uwp",
|
|
"dependencies": [
|
|
{
|
|
"name": "alsa",
|
|
"platform": "linux"
|
|
},
|
|
{
|
|
"name": "juce",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"curl",
|
|
"freetype",
|
|
"jack",
|
|
"opengl",
|
|
"xcursor",
|
|
"xinerama",
|
|
"xrandr",
|
|
"xrender"
|
|
],
|
|
"features": {
|
|
"curl": {
|
|
"description": "Enable CURL support",
|
|
"dependencies": [
|
|
"curl"
|
|
]
|
|
},
|
|
"extras": {
|
|
"description": "Enable JUCE Extras such as Projucer, AudioPluginHost, BinaryBuilder."
|
|
},
|
|
"freetype": {
|
|
"description": "Enable FreeType support",
|
|
"dependencies": [
|
|
"freetype"
|
|
]
|
|
},
|
|
"jack": {
|
|
"description": "Enable JACK audio support",
|
|
"dependencies": [
|
|
{
|
|
"name": "jack2",
|
|
"platform": "linux"
|
|
}
|
|
]
|
|
},
|
|
"ladspa": {
|
|
"description": "Enable LADSPA plugin host support."
|
|
},
|
|
"opengl": {
|
|
"description": "Enable OpenGL support",
|
|
"dependencies": [
|
|
"opengl"
|
|
]
|
|
},
|
|
"web-browser": {
|
|
"description": "Enable WebBrowser support"
|
|
},
|
|
"xcursor": {
|
|
"description": "Enable XCursor support"
|
|
},
|
|
"xinerama": {
|
|
"description": "Enable Xinerama support",
|
|
"dependencies": [
|
|
{
|
|
"name": "libxinerama",
|
|
"platform": "linux"
|
|
}
|
|
]
|
|
},
|
|
"xrandr": {
|
|
"description": "Enable XRandR support",
|
|
"dependencies": [
|
|
{
|
|
"name": "libxrandr",
|
|
"platform": "linux"
|
|
}
|
|
]
|
|
},
|
|
"xrender": {
|
|
"description": "Enable XRender support",
|
|
"dependencies": [
|
|
{
|
|
"name": "libxrender",
|
|
"platform": "linux"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|