Greetings!
I was hoping to get some help with a perplexing error. I am trying to
compile OpenImageIO on MacOS Intel x86_64 on macOS v10.15.7.

I have need to compile against OpenEXR v2.4.1. I have successfully compiled
OpenEXR and installed it to /usr/local.

When trying to invoke a cmake build on OpenImageIO v2.4.1, I get the
following warning:

CMake Warning at src/cmake/modules/FindOpenEXR.cmake:43 (find_package):
> Found package configuration file:
>
> /usr/local/lib/cmake/OpenEXR/OpenEXRConfig.cmake
>
> but it set OpenEXR_FOUND to FALSE so package "OpenEXR" is considered to be
> NOT FOUND. Reason given by package:
>
> The following imported targets are referenced, but are missing:
> IlmBase::Iex IlmBase::Half IlmBase::Imath IlmBase::IlmThread
>

And then at the end, the following error:

> -- Configuring done
> CMake Error at /usr/local/lib/cmake/OpenEXR/OpenEXRConfig.cmake:68
> (set_target_properties):
> The link interface of target "OpenEXR::IlmImf" contains:
>
> IlmBase::Iex
>
> but the target was not found. Possible reasons include:
>
> * There is a typo in the target name.
> * A find_package call is missing for an IMPORTED target.
> * An ALIAS target is missing.
>
> Call Stack (most recent call first):
> src/cmake/modules/FindOpenEXR.cmake:43 (find_package)
> src/cmake/checked_find_package.cmake:127 (find_package)
> src/cmake/externalpackages.cmake:96 (checked_find_package)
> CMakeLists.txt:162 (include)
>

I have tried going back in time all the way to openimageio v2.1.20, and
this version does successfully find the openexr libraries. However there
are other issues.. and I need a newer version of OpenImageIO. I believe it
is somehow related to the new logic in src/cmake/modules/FindOpenEXR.cmake
to handle finding OpenEXR > v3.0? But I'm kindof at a dead-end here.

Full cmake log attached if it's useful. Any help would be appreciated!
b78:build jed$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local -D VERBOSE=ON ..
-- The CXX compiler identification is AppleClang 12.0.0.12000032
-- The C compiler identification is AppleClang 12.0.0.12000032
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Configuring OpenImageIO 2.4.7.1
-- CMake 3.25.1
-- CMake system           = Darwin-19.6.0
-- CMake system name      = Darwin
-- Project source dir     = /Users/jed/dev/compile/oiio/oiio-2.4.7.1
-- Project build dir      = /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build
-- Project install prefix = /usr/local
-- Configuration types    =
-- Build type             = Release
-- Supported release      = ON
-- CMAKE_UNITY_BUILD_MODE =
-- CMAKE_UNITY_BUILD_BATCH_SIZE =
-- Setting Namespace to: OpenImageIO_v2_4
-- CMAKE_SYSTEM_NAME      = Darwin
-- CMAKE_SYSTEM_VERSION   = 19.6.0
-- CMAKE_SYSTEM_PROCESSOR = x86_64
-- CMAKE_CXX_COMPILER     = /Library/Developer/CommandLineTools/usr/bin/c++
-- CMAKE_CXX_COMPILER_ID  = AppleClang
-- Building with C++14, downstream minimum C++14
-- The compiler is Clang: AppleClang version 12.0
-- Performing Test USE_STD_FILESYSTEM
-- Performing Test USE_STD_FILESYSTEM - Failed
-- Using Boost::filesystem
-- clang-format not found.
-- Setting SOVERSION to: 2.4
-- CMAKE_INSTALL_RPATH = /usr/local/lib
--
-- * Checking for dependencies...
-- *   - Missing a dependency 'Package'?
-- *     Try cmake -DPackage_ROOT=path or set environment var Package_ROOT=path
-- *     For many dependencies, we supply src/build-scripts/build_Package.bash
-- *   - To exclude an optional dependency (even if found),
-- *     -DUSE_Package=OFF or set environment var USE_Package=OFF
--
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Boost_COMPONENTS = thread;filesystem
-- Found Boost: /usr/local/include (found version "1.74.0") found components: thread filesystem chrono date_time atomic
-- Found Boost 107400
--     Boost_INCLUDE_DIR = /usr/local/include
--     Boost_INCLUDE_DIRS = /usr/local/include
--     Boost_LIBRARIES = /usr/local/lib/libboost_thread-mt.dylib;/usr/local/lib/libboost_filesystem-mt.dylib;/usr/local/lib/libboost_chrono-mt.dylib;/usr/local/lib/libboost_date_time-mt.dylib;/usr/local/lib/libboost_atomic-mt.dylib
-- Found ZLIB: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libz.tbd (found version "1.2.11")
-- Found ZLIB 1.2.11
--     ZLIB_INCLUDE_DIR = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     ZLIB_INCLUDE_DIRS = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     ZLIB_LIBRARIES = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libz.tbd
-- Found TIFF: /usr/local/lib/libtiff.dylib (found version "4.4.0")
-- Found TIFF 4.4.0
--     TIFF_INCLUDE_DIR = /usr/local/include
--     TIFF_INCLUDE_DIRS = /usr/local/include
--     TIFF_LIBRARIES = /usr/local/lib/libtiff.dylib
CMake Warning at src/cmake/modules/FindOpenEXR.cmake:43 (find_package):
  Found package configuration file:

    /usr/local/lib/cmake/OpenEXR/OpenEXRConfig.cmake

  but it set OpenEXR_FOUND to FALSE so package "OpenEXR" is considered to be
  NOT FOUND.  Reason given by package:

  The following imported targets are referenced, but are missing:
  IlmBase::Iex IlmBase::Half IlmBase::Imath IlmBase::IlmThread

Call Stack (most recent call first):
  src/cmake/checked_find_package.cmake:127 (find_package)
  src/cmake/externalpackages.cmake:96 (checked_find_package)
  CMakeLists.txt:162 (include)


-- Found PkgConfig: /usr/local/bin/pkg-config (found version "0.29.2")
-- Found OpenEXR: /usr/local/include
-- Found OpenEXR 2.4.1
--     OPENEXR_INCLUDES = /usr/local/include
--     OPENEXR_INCLUDE_DIR = /usr/local/include
--     OPENEXR_LIBRARIES = /usr/local/lib/libIlmImf-2_4.dylib;/usr/local/lib/libImath-2_4.dylib;/usr/local/lib/libIex-2_4.dylib;/usr/local/lib/libHalf-2_4.dylib;/usr/local/lib/libIlmThread-2_4.dylib;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libz.tbd
--     IMATH_INCLUDES = /usr/local/include
CMake Warning (dev) at /usr/local/Cellar/cmake/3.25.1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:438 (message):
  The package name passed to `find_package_handle_standard_args` (JPEG) does
  not match the name of the calling package (JPEGTurbo).  This can lead to
  problems in calling code that expects `find_package` result variables
  (e.g., `_FOUND`) to follow a certain pattern.
Call Stack (most recent call first):
  src/cmake/modules/FindJPEGTurbo.cmake:42 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  src/cmake/checked_find_package.cmake:127 (find_package)
  src/cmake/externalpackages.cmake:139 (checked_find_package)
  CMakeLists.txt:162 (include)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- Found JPEG: /usr/local/opt/jpeg-turbo/lib/libjpeg.dylib
-- Found JPEGTurbo
--     JPEG_INCLUDE_DIRS = /usr/local/opt/jpeg-turbo/include
--     JPEG_LIBRARIES = /usr/local/opt/jpeg-turbo/lib/libjpeg.dylib
--     JPEG_VERSION = 80
-- Using internal PugiXML
-- Found Python: /usr/local/Frameworks/Python.framework/Versions/3.9/bin/python3.9 (found version "3.9.0") found components: Interpreter Development Development.Module Development.Embed
-- Found Python 3.9.0
--     Python_INCLUDE_DIRS = /usr/local/Cellar/python@3.9/3.9.0_4/Frameworks/Python.framework/Versions/3.9/include/python3.9
--     Python_LIBRARIES = /usr/local/Cellar/python@3.9/3.9.0_4/Frameworks/Python.framework/Versions/3.9/lib/libpython3.9.dylib
--     Python_VERSION = 3.9.0
--     Python_EXECUTABLE = /usr/local/Frameworks/Python.framework/Versions/3.9/bin/python3.9
--     Python_Development_FOUND = TRUE
--     Python_Interpreter_FOUND = TRUE
--     Python site packages dir lib/python3.9/site-packages/OpenImageIO
--     Python to include 'lib' prefix: OFF
--     Python to include SO version: OFF
-- Found PNG: /usr/local/lib/libpng.dylib (found version "1.6.39")
-- Found PNG 1.6.39
--     PNG_INCLUDE_DIR = /usr/local/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     PNG_INCLUDE_DIRS = /usr/local/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     PNG_LIBRARIES = /usr/local/lib/libpng.dylib;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libz.tbd
-- Found BZip2: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libbz2.tbd (found version "1.0.6")
-- Looking for BZ2_bzCompressInit
-- Looking for BZ2_bzCompressInit - found
-- Found BZip2 1.0.6
--     BZIP2_INCLUDE_DIR = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     BZIP2_INCLUDE_DIRS = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include
--     BZIP2_LIBRARIES = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib/libbz2.tbd
-- Found Freetype: /usr/local/lib/libfreetype.dylib (found version "2.12.1")
-- Found Freetype 2.12.1
--     FREETYPE_INCLUDE_DIRS = /usr/local/include/freetype2
--     FREETYPE_LIBRARIES = /usr/local/lib/libfreetype.dylib
-- Could NOT find OpenColorIO (missing: OpenColorIO_DIR)
-- Found OpenColorIO: /usr/local/include (found version "1.1.1")
-- Found OpenColorIO 1.1.1
--     OPENCOLORIO_INCLUDES = /usr/local/include
--     OPENCOLORIO_INCLUDE_DIR = /usr/local/include
--     OPENCOLORIO_LIBRARIES = /usr/local/lib/libOpenColorIO.dylib
-- Could NOT find OpenCV (missing: OpenCV_LIBS OpenCV_INCLUDE_DIR OpenCV_VERSION) (Required is at least version "3.0")
-- OpenCV library not found
--     Try setting OpenCV_ROOT ?
-- Found TBB 2020.3 from CONFIG
-- Could NOT find DCMTK (missing: DCMTK_INCLUDE_DIR)
-- DCMTK library not found
--     Try setting DCMTK_ROOT ?
-- Found FFmpeg: /usr/local/Cellar/ffmpeg/4.3.1_4/lib/libavcodec.dylib
-- Found FFmpeg 4.3
--     FFMPEG_INCLUDES = /usr/local/Cellar/ffmpeg/4.3.1_4/include
--     FFMPEG_INCLUDE_DIR = /usr/local/Cellar/ffmpeg/4.3.1_4/include
--     FFMPEG_LIBRARIES = /usr/local/Cellar/ffmpeg/4.3.1_4/lib/libavcodec.dylib;/usr/local/Cellar/ffmpeg/4.3.1_4/lib/libavformat.dylib;/usr/local/Cellar/ffmpeg/4.3.1_4/lib/libavutil.dylib;/usr/local/Cellar/ffmpeg/4.3.1_4/lib/libswscale.dylib
-- Found GIF: /usr/local/lib/libgif.dylib (found version "5.2.1")
-- Found GIF 5.2.1
--     GIF_INCLUDE_DIR = /usr/local/include
--     GIF_INCLUDE_DIRS = /usr/local/include
--     GIF_LIBRARIES = /usr/local/lib/libgif.dylib
-- Found Libheif: /usr/local/include
-- Found Libheif 1.9.1
--     LIBHEIF_INCLUDES = /usr/local/include
--     LIBHEIF_INCLUDE_DIR = /usr/local/include
--     LIBHEIF_LIBRARIES = /usr/local/lib/libheif.dylib
-- Found LibRaw: /usr/local/lib/libraw.dylib (found version "0.20.2")
-- Found LibRaw 0.20.2
--     LibRaw_INCLUDE_DIR = /usr/local/include
--     LibRaw_LIBRARIES = /usr/local/lib/libraw.dylib
--     LibRaw_r_LIBRARIES = /usr/local/lib/libraw_r.dylib
-- Found OpenJPEG: /usr/local/include/openjpeg-2.5 (found version "2.5")
-- Found OpenJpeg: v2.5 /usr/local/lib/libopenjp2.dylib
-- Found OpenJPEG 2.5
--     OPENJPEG_INCLUDES = /usr/local/include/openjpeg-2.5
--     OPENJPEG_INCLUDE_DIR = /usr/local/include/openjpeg-2.5
--     OPENJPEG_LIBRARIES = /usr/local/lib/libopenjp2.dylib
-- Could NOT find OpenVDB (missing: OPENVDB_LIBRARY OPENVDB_INCLUDE_DIR)
-- OpenVDB library not found
--     Try setting OpenVDB_ROOT ?
-- Could NOT find Ptex (missing: Ptex_DIR)
-- Could NOT find Ptex (missing: PTEX_INCLUDE_DIR PTEX_LIBRARY)
-- Ptex library not found
--     Try setting Ptex_ROOT ?
--     Maybe this will help:  src/build-scripts/build_Ptex.bash
-- Could NOT find Ptex (missing: PTEX_INCLUDE_DIR PTEX_LIBRARY)
-- Ptex library not found
--     Try setting Ptex_ROOT ?
--     Maybe this will help:  src/build-scripts/build_Ptex.bash
-- Found WebP: /usr/local/include
-- Found WebP
--     WEBP_INCLUDES = /usr/local/include
--     WEBP_INCLUDE_DIR = /usr/local/include
--     WEBP_LIBRARIES = /usr/local/lib/libwebp.dylib;/usr/local/lib/libwebpdemux.dylib
-- Not using R3DSDK -- disabled
-- Could NOT find Nuke (missing: NUKE_DDIMAGE_LIBRARY NUKE_INCLUDE_DIR NUKE_LIBRARY_DIRS NUKE_EXECUTABLE)
-- Nuke library not found
--     Try setting Nuke_ROOT ?
-- Found OpenGL: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/OpenGL.framework
-- Found OpenGL
--     OPENGL_INCLUDE_DIR = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/OpenGL.framework
--     OPENGL_LIBRARIES = /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/OpenGL.framework;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/OpenGL.framework
CMake Warning at src/cmake/checked_find_package.cmake:127 (find_package):
  By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5", but
  CMake did not find one.

  Could not find a package configuration file provided by "Qt5" with any of
  the following names:

    Qt5Config.cmake
    qt5-config.cmake

  Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"
  to a directory containing one of the above files.  If "Qt5" provides a
  separate development package or SDK, be sure it has been installed.
Call Stack (most recent call first):
  src/cmake/externalpackages.cmake:257 (checked_find_package)
  CMakeLists.txt:162 (include)


-- Qt5 library not found
--     Try setting Qt5_ROOT ?
--   If you think you installed qt5 with Homebrew and it still doesn't work,
--   try:   export PATH=/usr/local/opt/qt5/bin:$PATH
-- Downloading local fmtlib/fmt
-- Found fmt: /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/fmt/include (found version "90100")
-- Found fmt 90100
--     FMT_INCLUDES = /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/fmt/include
--     FMT_INCLUDE_DIR = /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/fmt/include
-- Downloading local Tessil/robin-map
-- Found Robinmap: /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/robin-map/include
-- Found Robinmap
--     ROBINMAP_INCLUDES = /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/robin-map/include
--     ROBINMAP_INCLUDE_DIR = /Users/jed/dev/compile/oiio/oiio-2.4.7.1/ext/robin-map/include
CMake Warning at src/dicom.imageio/CMakeLists.txt:11 (message):
  DICOM plugin will not be built, no DCMTK


-- Create imagio_pvt.h from imageio_pvt.h.in
--

   WARNING: Qt or OpenGL not found -- 'iv' will not be built!

-- Performing Test HAS_FLTO
-- Performing Test HAS_FLTO - Success
-- Performing Test HAS_FLTO_THIN
-- Performing Test HAS_FLTO_THIN - Success
-- Found pybind11: /usr/local/include (found version "2.6.0" )
-- Found pybind11 2.6.0
--     pybind11_INCLUDE_DIR = /usr/local/include
-- Create oiioversion.h from oiioversion.h.in
-- Create half.h from half.h.in
-- Create Imath.h from Imath.h.in
-- Missing test data oiio-images
-- Missing test data openexr-images
-- Missing test data fits-images
-- Missing test data j2kp4files_v1_5
-- TESTS: cmake-consumer;iinfo;igrep;nonwhole-tiles;oiiotool;oiiotool-composite;oiiotool-control;oiiotool-copy;oiiotool-fixnan;oiiotool-pattern;oiiotool-readerror;oiiotool-subimage;oiiotool-text;oiiotool-xform;diff;dither;dup-channels;jpeg-corrupt;maketx;oiiotool-maketx;misnamed-file;missingcolor;null;rational
-- TESTS: texture-derivs;texture-fill;texture-flipt;texture-gettexels;texture-gray;texture-interp-bicubic;texture-blurtube;texture-crop;texture-cropover;texture-half;texture-uint16;texture-interp-bilinear;texture-interp-closest;texture-levels-stochaniso;texture-levels-stochmip;texture-mip-nomip;texture-mip-onelevel;texture-mip-trilinear;texture-mip-stochastictrilinear;texture-mip-stochasticaniso;texture-missing;texture-overscan;texture-pointsample;texture-udim;texture-udim2;texture-uint8;texture-width0blur;texture-wrapfill;texture-fat;texture-skinny;texture-stats
-- TESTS: texture-derivs;texture-fill;texture-flipt;texture-gettexels;texture-gray;texture-interp-bicubic;texture-blurtube;texture-crop;texture-cropover;texture-half;texture-uint16;texture-interp-bilinear;texture-interp-closest;texture-levels-stochaniso;texture-levels-stochmip;texture-mip-nomip;texture-mip-onelevel;texture-mip-trilinear;texture-mip-stochastictrilinear;texture-mip-stochasticaniso;texture-missing;texture-overscan;texture-pointsample;texture-udim;texture-udim2;texture-uint8;texture-width0blur;texture-wrapfill;texture-fat;texture-skinny;texture-stats
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests gpsread;oiiotool-attribs;texture-filtersize;texture-filtersize-stochastic;texture-res;texture-maxres
--   -> You can find it at Recent checkout of oiio-images

-- TESTS: python-colorconfig;python-deep;python-imagebuf;python-imagecache;python-imageoutput;python-imagespec;python-paramlist;python-roi;python-texturesys;python-typedesc
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests python-imageinput;python-imagebufalgo
--   -> You can find it at

-- TESTS: oiiotool-color
-- TESTS: texture-icwrite
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images/bmpsuite
--   -> Will not run tests bmp
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests cineon
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests dpx
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images/dds
--   -> Will not run tests dds
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/fits-images
--   -> Will not run tests fits
--   -> You can find it at http://www.cv.nrao.edu/fits/data/tests/

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests gif
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/openexr-images
--   -> Will not run tests hdr
--   -> You can find it at http://github.com/AcademySoftwareFoundation/openexr-images

-- TESTS: heif
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests ico
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests iff
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests jpeg2000
--   -> You can find it at Recent checkout of oiio-images

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/j2kp4files_v1_5
--   -> Will not run tests jpeg2000-j2kp4files
--   -> You can find it at http://www.itu.int/net/ITU-T/sigdb/speimage/ImageForm-s.aspx?val=10100803

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/openexr-images
--   -> Will not run tests openexr-suite;openexr-multires;openexr-chroma;openexr-v2;openexr-window;perchannel;oiiotool-deep
--   -> You can find it at http://github.com/AcademySoftwareFoundation/openexr-images

-- TESTS: openvdb;texture-texture3d
-- TESTS: openvdb;texture-texture3d
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests png;png-damaged
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests pnm
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests psd;psd-colormodes
--   -> You can find it at

-- TESTS: ptex
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images/raw
--   -> Will not run tests raw
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests rla
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests sgi
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests targa
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests targa-thumbnail
--   -> You can find it at

-- TESTS: term
--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images/libtiffpic
--   -> Will not run tests tiff-suite;tiff-depths;tiff-misc
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images/webp
--   -> Will not run tests webp
--   -> You can find it at

--

Did not find /Users/jed/dev/compile/oiio/oiio-2.4.7.1/build/testsuite/oiio-images
--   -> Will not run tests zfile
--   -> You can find it at

-- Configuring done
CMake Error at /usr/local/lib/cmake/OpenEXR/OpenEXRConfig.cmake:68 (set_target_properties):
  The link interface of target "OpenEXR::IlmImf" contains:

    IlmBase::Iex

  but the target was not found.  Possible reasons include:

    * There is a typo in the target name.
    * A find_package call is missing for an IMPORTED target.
    * An ALIAS target is missing.

Call Stack (most recent call first):
  src/cmake/modules/FindOpenEXR.cmake:43 (find_package)
  src/cmake/checked_find_package.cmake:127 (find_package)
  src/cmake/externalpackages.cmake:96 (checked_find_package)
  CMakeLists.txt:162 (include)


-- Generating done
CMake Generate step failed.  Build files cannot be regenerated correctly.
_______________________________________________
Oiio-dev mailing list
Oiio-dev@lists.openimageio.org
http://lists.openimageio.org/listinfo.cgi/oiio-dev-openimageio.org

Reply via email to