gingko: remove redundant build type variant (#36703)

This commit is contained in:
Jon Rood 2023-04-15 06:41:48 -06:00 committed by GitHub
parent 5071174194
commit 242c1e4535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,12 +38,6 @@ class Ginkgo(CMakePackage, CudaPackage, ROCmPackage):
variant("develtools", default=False, description="Compile with develtools enabled")
variant("hwloc", default=False, description="Enable HWLOC support")
variant("mpi", default=False, description="Enable MPI support")
variant(
"build_type",
default="Release",
description="The build type to build",
values=("Debug", "Release"),
)
depends_on("cmake@3.9:", type="build")
depends_on("cuda@9:", when="+cuda")