We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
some old recipes use code like:
self.cpp_info.shared_link_flags.append("-framework CoreAudio")
since conan 1.19, it's better to use just:
self.cpp_info.frameworks.append("CoreAudio")
the hook may advice the new systax over the old one
The text was updated successfully, but these errors were encountered:
conan-io#108 use cpp_info.frameworks instead of cpp_info.exe_link_flags
3028116
Signed-off-by: Uilian Ries <[email protected]>
conan-io#108 Fix KB number for osx tests
31d481e
conan-io#108 Try to avoid git conflict
22c3954
Successfully merging a pull request may close this issue.
some old recipes use code like:
since conan 1.19, it's better to use just:
the hook may advice the new systax over the old one
The text was updated successfully, but these errors were encountered: