-
-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minizip-ng-config.cmake relies on non-existant zlib-ng-config.cmake #722
Comments
Seemingly fixed in zlib-ng/zlib-ng#1601 |
Why reopened? |
minizip-ng uses find_package(ZLIBNG QUIET) which matches zlibng-config.cmake but not zlib-ng-config.cmake. This then gets added to minizip-ng.cmake which doesn't work with zlib-ng-config.cmake. Thinking about a change like this parona-source@982eda6. Ive to see if other distribution install FindZLIBNG systemwide without a zlib-ng package config file, meaning this change would break it for them. |
Modify in tree zlib-ng find module to the same name. Bug: zlib-ng#722 Signed-off-by: Alfred Wingate <[email protected]>
To add to that. cmake_minimum_required(VERSION 3.26)
project(test CXX)
find_package(minizip-ng REQUIRED) yields
This is was caused by having a |
As per https://cmake.org/cmake/help/latest/module/CMakeFindDependencyMacro.html calling
find_dependency(ZLIBNG REQUIRED)
requires azlib-ng-config.cmake
whichzlib-ng
does not install.The text was updated successfully, but these errors were encountered: