hooks icon indicating copy to clipboard operation
hooks copied to clipboard

[conan center] advice to use cpp_info.frameworks instead of cpp_info.exe_link_flags

Open SSE4 opened this issue 6 years ago • 0 comments

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

SSE4 avatar Oct 15 '19 13:10 SSE4