vcpkg/ports/osg/vcpkg.json
Kai Pastor 0d27810d17
[osg] Cleanup, export unofficial config (#24720)
* Revise portfile

* Plugins are a default feature; fix disabling

* Remove line continuations from pc file

vcpkg_fixup_pkgconfig cannot handle it.

* Control nvtt plugin via feature

* Control dae plugin, not find_package

* Control fontconfig via feature

Use CMake's (3.14) find module for which vcpkg provides a wrapper.
OSG links to Fontconfig::Fontconfig.
OSG default is to use Fontconfig except for ios and android.

* Control freetype via feature

Use CMake's find module for which vcpkg provides a wrapper.
OSG links to FREETYPE_LIBRARIES.

* Control RestHttpDevice via feature

Only this plugin needs boost.

* Drop unused liblas dependency

* Drop unused coin dependency

Coin was meant to be used for the inventor plugin,
but this plugin is disabled.

* Control sdl1 via feature

* Enable apps on linux

* Disable apps and docs for debug

* Drop example application patch

* Use option, not patch, to disable DLL versioning

* Fix osg plugin PDB installation

* Prefer <Pkg>_LIBRARIES for linking

<Pkg>_LIBRARIES carries debug+release config and transitive usage requirements.

* Curl patches are obsolete now.

We leverage CURL_LIBRARIES via link-libraries.patch.

* Add unofficial config export

* Use toolchain's windows version

Fixes mingw build.

* Avoid extra dependency lookups

* Silence warnings about plugin control variables

* Define OSG_LIBRARY_STATIC

* Revise copying of plugins

* Control OpenEXR via feature

Unblock uwp.

* Allow jasper without opengl

* [osgearth] Remove obsolete geos patching

The build uses exported geos config.

* [osgearth] Serialize linking to avoid OOM errors

* [osgearth] Fix minor portfile issues

* [osgearth] Prefer <Pkg>_LIBRARIES for linking

<Pkg>_LIBRARIES carries debug+release config and transitive usage requirements.

* [osgearth] Use unofficial osg config

* [osgearth] Fix lib installation dir

* [osgearth] Revise OSGEARTH_LIBRARY_STATIC

* [osgearth] Revise find_package patching

* [osgearth] Revise copying of plugins

* [osgearth] Disable tools for debug variant

* [osgearth] Control Blend2D via feature

* Update versions

* Fix plugin lookup

* Update versions

* CR request

* Update versions

* [osgearth] Remove tools from default features

* Update versions
2022-06-20 13:49:37 -07:00

202 lines
4.3 KiB
JSON

{
"name": "osg",
"version": "3.6.5",
"port-version": 13,
"description": "The OpenSceneGraph is an open source high performance 3D graphics toolkit.",
"homepage": "https://github.com/openscenegraph/OpenSceneGraph",
"dependencies": [
{
"name": "expat",
"platform": "windows"
},
"opengl-registry",
{
"name": "openimageio",
"platform": "osx"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"default-features": [
"default-features",
"freetype",
"plugins"
],
"features": {
"collada": {
"description": "Support for Collada (.dae) files",
"dependencies": [
"collada-dom"
]
},
"default-features": {
"description": "Platform-dependent default features",
"dependencies": [
{
"name": "osg",
"default-features": false,
"features": [
"openexr"
],
"platform": "!uwp"
},
{
"name": "osg",
"default-features": false,
"features": [
"rest-http-device"
],
"platform": "!windows"
},
{
"name": "osg",
"default-features": false,
"features": [
"fontconfig"
],
"platform": "!android & !ios & !uwp"
},
{
"name": "osg",
"default-features": false,
"features": [
"nvtt"
],
"platform": "!x86 & !(windows & arm64) & !uwp"
}
]
},
"docs": {
"description": "Build OpenSceneGraph reference documentation using doxygen (use: make doc_openscenegraph doc_openthreads"
},
"examples": {
"description": "Enable to build OSG Examples",
"dependencies": [
{
"name": "libiconv",
"platform": "windows"
},
{
"name": "osg",
"default-features": false,
"features": [
"freetype"
]
},
"sdl2"
]
},
"fontconfig": {
"description": "Enable Fontconfig support for osgText",
"dependencies": [
"fontconfig",
{
"name": "osg",
"default-features": false,
"features": [
"freetype"
]
}
]
},
"freetype": {
"description": "Enable Freetype support",
"dependencies": [
{
"name": "freetype",
"default-features": false
}
]
},
"nvtt": {
"description": "Build texture processing tools plugin",
"dependencies": [
"nvtt"
]
},
"openexr": {
"description": "Build the exr plugin",
"dependencies": [
"ilmbase",
"openexr"
]
},
"packages": {
"description": "Set to ON to generate CPack configuration files and packaging targets"
},
"plugins": {
"description": "Build most OSG Plugins",
"dependencies": [
"curl",
"gdal",
{
"name": "giflib",
"platform": "windows"
},
{
"name": "jasper",
"default-features": false
},
"libgta",
{
"name": "libiconv",
"platform": "windows"
},
"libjpeg-turbo",
"libpng",
{
"name": "libxml2",
"platform": "windows"
},
"tiff"
]
},
"rest-http-device": {
"description": "Build RestHttpDevice plugin",
"supports": "!windows",
"dependencies": [
"boost-array",
"boost-asio",
"boost-bind",
"boost-core",
"boost-lexical-cast",
"boost-logic",
"boost-smart-ptr",
"boost-tuple"
]
},
"sdl1": {
"description": "Build SDL 1 plugin, and enable SDL 1 app features",
"dependencies": [
"sdl1"
]
},
"tools": {
"description": "Enable to build OSG Applications (e.g. osgviewer)",
"dependencies": [
"curl",
{
"name": "libiconv",
"platform": "windows"
},
"libjpeg-turbo",
"libpng",
{
"name": "osg",
"default-features": false,
"features": [
"freetype"
]
}
]
}
}
}