adol-c: fix libs property (#36614)

This commit is contained in:
IHuismann 2024-11-26 17:01:18 +01:00 committed by GitHub
parent f2ab74efe5
commit 141cdb6810
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,3 +153,8 @@ def install_additional_files(self):
join_path(source_directory, "ADOL-C", "examples", "additional_examples")
):
Executable("./checkpointing/checkpointing")()
@property
def libs(self):
"""The name of the library differs from the package name => own libs handling."""
return find_libraries(["libadolc"], root=self.prefix, shared=True, recursive=True)