Skip to content

Commit

Permalink
[feat] openexr writer
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Dukhovnikov <[email protected]>
  • Loading branch information
antond-weta committed Nov 16, 2023
1 parent 889b631 commit 9618e4f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions configure.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ find_package ( Boost REQUIRED
if ( USE_OPENEXR )
find_package ( OpenEXR CONFIG QUIET )

if ( openexr_FOUND )
message ( STATUS "OpenEXR config found ${openexr_VERSION}" )
set ( OPENEXR_CONFIG_FOUND TRUE )
if ( OpenEXR_FOUND )
message ( STATUS "OpenEXR config found ${openexr_VERSION}" )
set ( OPENEXR_CONFIG_FOUND TRUE )
else ()
message ( WARNING "OpenEXR config not found" )
find_package ( OpenEXR MODULE REQUIRED )
endif ()
message ( WARNING "OpenEXR config not found" )
find_package ( OpenEXR MODULE REQUIRED )
endif ()
else ()
find_package ( AcesContainer CONFIG REQUIRED )
endif ()
Expand Down

0 comments on commit 9618e4f

Please sign in to comment.