Switch GROMACS build type to Release (#36181)

The current default RelWithDebInfo gives significantly slower builds
so it should not be the default.
This commit is contained in:
Szilárd Páll 2023-03-17 14:17:06 +01:00 committed by GitHub
parent b54d208aea
commit 3897c1308e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ class Gromacs(CMakePackage):
variant("nosuffix", default=False, description="Disable default suffixes")
variant(
"build_type",
default="RelWithDebInfo",
default="Release",
description="The build type to build",
values=(
"Debug",