vcpkg/ports/ms-gltf/vcpkg.json
Kai Pastor 49868fd552
[vcpkg-cmake] Update parallel vcpkg_cmake_configure (#21507)
* Revise generator selection

If the host is x86, assume that msbuild is requested for windows.
If msbuild is requested and suitable, use it.
Else if a particular generator is requested, use it.
Else if ninja is available, use it.
Else on non-windows host, use "Unix Makefiles".

* Revise ninja_host detection

* Revise parallel configure detection

* Consolidate ninja path setup

* Update documentation

* Use portable chdir

* [ms-gltf] Use new generator selection

* Update versions
2022-07-25 12:23:04 -07:00

31 lines
594 B
JSON

{
"name": "ms-gltf",
"version-date": "2022-06-28",
"port-version": 1,
"description": "glTF-SDK is a C++ Software Development Kit for glTF",
"homepage": "https://github.com/microsoft/glTF-SDK",
"license": "MIT",
"supports": "!linux",
"dependencies": [
"rapidjson",
{
"name": "vcpkg-cmake",
"host": true
}
],
"default-features": [
"test"
],
"features": {
"samples": {
"description": "Build with GLTF samples"
},
"test": {
"description": "Build test programs",
"dependencies": [
"gtest"
]
}
}
}