Skip to content

Commit

Permalink
removng debug NOT statement
Browse files Browse the repository at this point in the history
  • Loading branch information
greenstein committed Sep 18, 2023
1 parent 296df45 commit a4019aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/heif.imageio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


if (Libheif_FOUND)
if (NOT LINKSTATIC)
if (LINKSTATIC)
set (_static_suffixes .lib .a)
set (_static_libraries_found 0)

Expand All @@ -16,7 +16,7 @@ if (Libheif_FOUND)
endif()
endforeach()

if (NOT ${_static_libraries_found} GREATER 0)
if (${_static_libraries_found} GREATER 0)
message (STATUS "${ColorYellow}")
message (STATUS "You are linking OpenImageIO against a static version of libheif, which is LGPL")
message (STATUS "licensed. If you intend to redistribute this build of OpenImageIO, we recommend")
Expand Down

0 comments on commit a4019aa

Please sign in to comment.