You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd suggest adding code like this to your root CMakeLists.txt:
find_package(Ice REQUIRED COMPONENTS Ice Glacier2)
# Starting with Ice 3.7.0, IceUtil got merged into Ice. For older versions, check if IceUtil is there (we need it)
# cf. https://doc.zeroc.com/display/Ice37/Upgrading+your+Application+from+Ice+3.6
if (Ice_FOUND AND Ice_VERSION VERSION_LESS 3.7.0)
find_package(Ice REQUIRED COMPONENTS IceUtil)good!
endif()
The text was updated successfully, but these errors were encountered:
At the present time, this project hasn't yet been updated to work with Ice 3.7 at all, so even with the fix it's rather unlikely that it would build and/or run correctly. Updating the CMake logic would be part of that work. I will leave this ticket open so that it doesn't get forgotten when doing the Ice 3.7 upgrade.
You have this in your root CMakeLists.txt:
Building openmicroscopy against Ice 3.7.0:
Problem: IceUtil was merged into Ice in 3.7.0 release, cf. https://doc.zeroc.com/display/Ice37/Upgrading+your+Application+from+Ice+3.6#UpgradingyourApplicationfromIce3.6-IceUtilLibraryRemoved
I'd suggest adding code like this to your root CMakeLists.txt:
The text was updated successfully, but these errors were encountered: