aedi: add missing framework to vulkan-loader .pc file

This commit is contained in:
alexey.lysiuk 2023-01-25 12:43:02 +02:00
parent 9f4f5a7640
commit a0ccfa7cca
1 changed files with 4 additions and 0 deletions

View File

@ -349,6 +349,10 @@ class VulkanLoaderTarget(CMakeStaticDependencyTarget):
super().configure(state)
@staticmethod
def _process_pkg_config(pcfile: Path, line: str) -> str:
return line.replace('\n', ' -framework CoreFoundation\n') if line.startswith('Libs.private:') else line
class XmpTarget(ConfigureMakeStaticDependencyTarget):
def __init__(self, name='xmp'):