The OpenVINO backend CMakeLists.txt hardcoded a TBB path relative to
OpenVINO_DIR that assumes the official archive install layout:
${OpenVINO_DIR}/../3rdparty/tbb/lib/cmake/TBB/TBBConfig.cmake
This path does not exist when OpenVINO is installed via apt on Ubuntu,
which uses the system TBB and places cmake config files at:
/usr/lib/x86_64-linux-gnu/cmake/TBB/
Replace with find_package(TBB REQUIRED) and document the -DTBB_DIR
hint needed for apt-based installs.
|
||
|---|---|---|
| .. | ||
| cmake | ||
| include | ||
| src | ||
| .gitignore | ||
| CMakeLists.txt | ||