From 1017ea4f833192605371fa13fd6d8a82e4d4d406 Mon Sep 17 00:00:00 2001 From: Anatoliy Talamanov Date: Fri, 15 Dec 2023 13:21:01 +0000 Subject: [PATCH] Merge pull request #24601 from TolyaTalamanov:at/fix-onnxrt-include-path-in-cmake Fix path to ONNX Runtime include folder #24601 ### Pull Request Readiness Checklist Looks the `install` directory layout has been changed for `v1.16.3` See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [ ] I agree to contribute to the project under Apache 2 License. - [ ] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [ ] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake --- cmake/FindONNX.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/FindONNX.cmake b/cmake/FindONNX.cmake index 956eeafedb..0b61185824 100644 --- a/cmake/FindONNX.cmake +++ b/cmake/FindONNX.cmake @@ -11,7 +11,9 @@ if(ONNXRT_ROOT_DIR) find_library(ORT_LIB onnxruntime ${ONNXRT_ROOT_DIR}/lib CMAKE_FIND_ROOT_PATH_BOTH) + # The location of headers varies across different versions of ONNX Runtime find_path(ORT_INCLUDE onnxruntime_cxx_api.h + ${ONNXRT_ROOT_DIR}/include/onnxruntime/ ${ONNXRT_ROOT_DIR}/include/onnxruntime/core/session CMAKE_FIND_ROOT_PATH_BOTH) endif()