Skip to content
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

cairomm: relocatable shared lib on macOS #22480

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion recipes/cairomm/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.apple import is_apple_os
from conan.tools.apple import fix_apple_shared_install_name, is_apple_os
from conan.tools.build import check_min_cppstd, cross_building
from conan.tools.env import VirtualBuildEnv
from conan.tools.files import copy, get, rename, replace_in_file, rm, rmdir
Expand Down Expand Up @@ -140,6 +140,8 @@ def package(self):
for dir_to_remove in ["pkgconfig", f"cairomm-{self._abi_version}"]:
rmdir(self, os.path.join(self.package_folder, "lib", dir_to_remove))

fix_apple_shared_install_name(self)

def package_info(self):
name = f"cairomm-{self._abi_version}"
self.cpp_info.components[name].set_property("pkg_config_name", name)
Expand Down