vcpkg/ports/opensubdiv/vcpkg.json

87 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "opensubdiv",
2022-10-22 06:26:55 +08:00
"version-semver": "3.5.0",
[opensubdiv] Fix build error with feature tbb (#38416) Fix one of https://github.com/microsoft/vcpkg/issues/32398 issue. When install opensubdiv[core,tbb]:x64-windows and opensubdiv[core,tbb]:x64-linux will get this error: ```` FAILED: opensubdiv/osd/CMakeFiles/osd_cpu_obj.dir/tbbEvaluator.cpp.obj C:\PROGRA~1\MIB055~1\2022\COMMUN~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /TP -DNOMINMAX -DOPENSUBDIV_HAS_TBB -DOPENSUBDIV_VERSION_STRING=\"3.5.0\" -DTBB_USE_DEBUG -D_CRT_SECURE_NO_WARNINGS -D_USE_MATH_DEFINES -IF:\test\vcpkg\buildtrees\opensubdiv\src\a0796b160c-fe5b1b6d5d\opensubdiv -IF:\test\vcpkg\buildtrees\opensubdiv\x64-windows-dbg\opensubdiv\osd -external:IF:\test\vcpkg\installed\x64-windows\include -external:W0 /nologo /DWIN32 /D_WINDOWS /W3 /utf-8 /GR /EHsc /MP /D_DEBUG /MDd /Z7 /Ob0 /Od /RTC1 /Wall /W3 /wd4005 /wd4350 /wd4548 /showIncludes /Foopensubdiv\osd\CMakeFiles\osd_cpu_obj.dir\tbbEvaluator.cpp.obj /Fdopensubdiv\osd\CMakeFiles\osd_cpu_obj.dir\ /FS -c F:\test\vcpkg\buildtrees\opensubdiv\src\a0796b160c-fe5b1b6d5d\opensubdiv\osd\tbbEvaluator.cpp F:\test\vcpkg\buildtrees\opensubdiv\src\a0796b160c-fe5b1b6d5d\opensubdiv\osd\tbbEvaluator.cpp(28): fatal error C1083: Cannot open include file: 'tbb/task_scheduler_init.h': No such file or directory ```` Because the task_scheduler_init.h header file no longer exists in the latest [Tbb](https://github.com/oneapi-src/oneTBB/tree/master/include/tbb) file, I refer to the [upstream](https://github.com/PixarAnimationStudios/OpenSubdiv/blob/7d0ab5530feef693ac0a920585b5c663b80773b3/opensubdiv/osd/tbbEvaluator.cpp#L30) modification to add judgment conditions to ensure that the old version is available. - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] ~~SHA512s are updated for each updated download.~~ - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. --------- Co-authored-by: Jon <v-zhli17@microsoft.com>
2024-04-27 01:19:43 +08:00
"port-version": 2,
"description": "An Open-Source subdivision surface library.",
"homepage": "https://github.com/PixarAnimationStudios/OpenSubdiv",
"license": "Apache-2.0",
"supports": "!arm & !uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
2022-10-22 06:26:55 +08:00
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"cuda": {
"description": "Enable CUDA backend",
"dependencies": [
"cuda"
]
},
"dx": {
"description": "Enable DirectX support",
"dependencies": [
{
"name": "directxsdk",
"features": [
"xp"
]
}
]
},
2022-10-22 06:26:55 +08:00
"examples": {
"description": "Build examples"
},
"glew": {
2022-10-22 06:26:55 +08:00
"description": "Enable GLEW wrapper library",
"dependencies": [
"glew"
]
},
"glfw": {
2022-10-22 06:26:55 +08:00
"description": "Build components depending on GLFW",
"dependencies": [
"glfw3"
]
},
"omp": {
"description": "Enable OpenMP backend"
},
"opencl": {
"description": "Enable OpenCL backend",
"dependencies": [
"opencl"
]
},
"opengl": {
2022-10-22 06:26:55 +08:00
"description": "Enable OpenGL backend",
"dependencies": [
"opengl"
]
},
"ptex": {
2022-10-22 06:26:55 +08:00
"description": "Enable Ptex support",
"dependencies": [
"ptex"
]
},
"tbb": {
"description": "Enable TBB backend",
"dependencies": [
"tbb"
]
},
"true-deriv-eval": {
"description": "Enable true derivative evaluation for Gregory basis patches"
2022-10-22 06:26:55 +08:00
},
"tutorials": {
"description": "Enable tutorials build"
}
}
}