bug fix: halide -> Halide or something. (#35431)

This commit is contained in:
Teo 2023-02-10 11:33:04 -05:00 committed by GitHub
parent cdcbf7dc46
commit 34e42d5540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,6 +50,10 @@ class Halide(CMakePackage, PythonExtension):
depends_on("py-scipy", type=("build", "run"), when="+python")
depends_on("py-numpy", type=("build", "run"), when="+python")
@property
def libs(self):
return find_libraries("libHalide", root=self.prefix, recursive=True)
def cmake_args(self):
spec = self.spec
llvm_config = Executable(spec["llvm"].prefix.bin.join("llvm-config"))