mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 06:39:00 +08:00
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
|
diff --git a/cmake/OpenCVFindLibsGrfmt.cmake b/cmake/OpenCVFindLibsGrfmt.cmake
|
||
|
index 9b43066..c1cc11f 100644
|
||
|
--- a/cmake/OpenCVFindLibsGrfmt.cmake
|
||
|
+++ b/cmake/OpenCVFindLibsGrfmt.cmake
|
||
|
@@ -151,7 +151,12 @@ if(WITH_OPENEXR)
|
||
|
if(BUILD_OPENEXR)
|
||
|
ocv_clear_vars(OPENEXR_FOUND)
|
||
|
else()
|
||
|
- include("${OpenCV_SOURCE_DIR}/cmake/OpenCVFindOpenEXR.cmake")
|
||
|
+ find_package(Imath CONFIG REQUIRED)
|
||
|
+ find_package(OpenEXR CONFIG REQUIRED)
|
||
|
+ set(OPENEXR_LIBRARIES Imath::Imath OpenEXR::OpenEXR)
|
||
|
+ set(OPENEXR_INCLUDE_PATHS "")
|
||
|
+ set(OPENEXR_VERSION "${OpenEXR_VERSION}")
|
||
|
+ set(OPENEXR_FOUND 1)
|
||
|
endif()
|
||
|
|
||
|
if(NOT OPENEXR_FOUND)
|
||
|
diff --git a/modules/highgui/src/grfmt_exr.cpp b/modules/highgui/src/grfmt_exr.cpp
|
||
|
index 399e586..b8cd270 100644
|
||
|
--- a/modules/highgui/src/grfmt_exr.cpp
|
||
|
+++ b/modules/highgui/src/grfmt_exr.cpp
|
||
|
@@ -57,6 +57,7 @@
|
||
|
#include <ImfOutputFile.h>
|
||
|
#include <ImfChannelList.h>
|
||
|
#include <ImfStandardAttributes.h>
|
||
|
+#include <ImfFrameBuffer.h>
|
||
|
#include <half.h>
|
||
|
#include "grfmt_exr.hpp"
|
||
|
|