-
Notifications
You must be signed in to change notification settings - Fork 46
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
Add a post_package_info hook to check that all libs listed in system_libs are lower case if host os is Windows #479
Comments
An issue which could be avoided with this hook: conan-io/conan-center-index#15405 |
@SpaceIm how I can workaround this in my CMakeLists.txt? |
You can't, recipe must be fixed. |
@rilian-la-te Hi! As @SpaceIm points out, the point of this kind of hooks is to guard against introducing bugs/unexpected issues, so being able to work around them would be counterproductive. |
@RubenRBS I want to workaround a buggy recipe) For now my best solution is using sed after conan install) |
MinGW on Linux doesn't support upper case system libs, but Visual Studio & MinGW on Windows don't care. So the robust approach is to always list system libs full lower case when host os is Windows.
The text was updated successfully, but these errors were encountered: