diff options
author | Kensuke WATANABE <95006284+wkensuke@users.noreply.github.com> | 2024-02-27 16:43:08 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 08:43:08 +0100 |
commit | 379a5d8fa03f4a6e2cc750e8bd0439965f616b81 (patch) | |
tree | c22eb3f33968804debad67337e34e1abfa339cab | |
parent | d8c2782949b109c77c862df0861ba6f088342ea0 (diff) | |
download | spack-379a5d8fa03f4a6e2cc750e8bd0439965f616b81.tar.gz spack-379a5d8fa03f4a6e2cc750e8bd0439965f616b81.tar.bz2 spack-379a5d8fa03f4a6e2cc750e8bd0439965f616b81.tar.xz spack-379a5d8fa03f4a6e2cc750e8bd0439965f616b81.zip |
root: add dependent package required for build time tests (#42849)
-rw-r--r-- | var/spack/repos/builtin/packages/root/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/root/package.py b/var/spack/repos/builtin/packages/root/package.py index bbd29cc2c4..5bdaed289a 100644 --- a/var/spack/repos/builtin/packages/root/package.py +++ b/var/spack/repos/builtin/packages/root/package.py @@ -352,6 +352,8 @@ class Root(CMakePackage): depends_on("xrootd", when="+xrootd") depends_on("xrootd@:4", when="@:6.22.03 +xrootd") + depends_on("googletest", when="@6.28.00:", type="test") + # ###################### Conflicts ###################### # I was unable to build root with any Intel compiler |