diff options
author | Teo <wraith1995@users.noreply.github.com> | 2023-02-10 11:33:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 08:33:04 -0800 |
commit | 34e42d55403348c38455614e050df3eb35f37566 (patch) | |
tree | a59f1a140ab115c06cf312c93b7ad0277cc1d701 | |
parent | cdcbf7dc46b214d6edf0c3209b4e9a13f3701c15 (diff) | |
download | spack-34e42d55403348c38455614e050df3eb35f37566.tar.gz spack-34e42d55403348c38455614e050df3eb35f37566.tar.bz2 spack-34e42d55403348c38455614e050df3eb35f37566.tar.xz spack-34e42d55403348c38455614e050df3eb35f37566.zip |
bug fix: halide -> Halide or something. (#35431)
-rw-r--r-- | var/spack/repos/builtin/packages/halide/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/halide/package.py b/var/spack/repos/builtin/packages/halide/package.py index 9e278a84ef..0b7c010e9b 100644 --- a/var/spack/repos/builtin/packages/halide/package.py +++ b/var/spack/repos/builtin/packages/halide/package.py @@ -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")) |