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