You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Somewhere between version 1.15.0 and 1.17.1 onnxruntime started to install CMake configuration files that make it more easily consumable for downstream packages. It should then be possible to simply do find_package(onnxruntime) and then use targets from there.
Several packages link against onnxruntime already now, e.g. FCCAnalyses and ddfastshowerml, but they come with hand rolled CMake find modules to detect onnxruntime. Unfortunately they do this with different spellings, e.g. OnnxRuntime.
Ideally we switch to a newer version of onnxruntime and simply switch all of our packages to use the available targets from the exported configuration. Unfortunately, it is probably not easily possible to transparently support all versions of onnxruntime easily.
The text was updated successfully, but these errors were encountered:
Somewhere between version 1.15.0 and 1.17.1 onnxruntime started to install CMake configuration files that make it more easily consumable for downstream packages. It should then be possible to simply do
find_package(onnxruntime)
and then use targets from there.Several packages link against onnxruntime already now, e.g.
FCCAnalyses
andddfastshowerml
, but they come with hand rolled CMake find modules to detect onnxruntime. Unfortunately they do this with different spellings, e.g.OnnxRuntime
.Ideally we switch to a newer version of onnxruntime and simply switch all of our packages to use the available targets from the exported configuration. Unfortunately, it is probably not easily possible to transparently support all versions of onnxruntime easily.
The text was updated successfully, but these errors were encountered: