relion 2.1 - update variant defaults (#6201)

Default precision should be double for CPU. Generally users also want
to use GPUs so the +cuda variant is now also enabled by default.
This commit is contained in:
Douglas Duckworth 2017-11-13 15:29:43 -05:00 committed by scheibelp
parent 2d6cccdc53
commit c7d2b4dbd6

View File

@ -37,8 +37,8 @@ class Relion(CMakePackage):
version('develop', git='https://github.com/3dem/relion.git')
variant('gui', default=True, description="build the gui")
variant('cuda', default=False, description="enable compute on gpu")
variant('double', default=False, description="double precision (cpu) code")
variant('cuda', default=True, description="enable compute on gpu")
variant('double', default=True, description="double precision (cpu) code")
variant('double-gpu', default=False, description="double precision (gpu) code")
variant('build_type', default='RelWithDebInfo',
description='The build type to build',