Skip to content

Commit

Permalink
FindECW.cmake: fix recent regression on non-Mac platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jan 18, 2025
1 parent 13eb2bf commit 76b0d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/packages/FindECW.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if (ECW_VERSION_STRING VERSION_GREATER_EQUAL 5.5)
INTERFACE_COMPILE_DEFINITIONS "${ECW_INTERFACE_COMPILE_DEFINITIONS}"
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
IMPORTED_LOCATION "${ECW_LIBRARY}"
INTERFACE_LINK_LIBRARIES ${ECW_EXTRA_LINK_LIBRARIES})
INTERFACE_LINK_LIBRARIES "${ECW_EXTRA_LINK_LIBRARIES}")
endif()
endif()
elseif(ECW_VERSION_STRING VERSION_GREATER_EQUAL 4.0)
Expand Down

2 comments on commit 76b0d5c

@rouault
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI @m-kuhn

@m-kuhn
Copy link
Contributor

@m-kuhn m-kuhn commented on 76b0d5c Jan 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx @rouault I guess this expands fine to a ;-separared string list when it is initialized on mac.

Please sign in to comment.