trilinos: add variant for ShyLU support (#11294)

This commit is contained in:
Kelly (KT) Thompson 2019-05-01 12:36:00 -06:00 committed by Peter Scheibel
parent a605fc7e06
commit 2e6eaa2c0a

View File

@ -157,6 +157,8 @@ class Trilinos(CMakePackage):
description='Compile with STK')
variant('shards', default=False,
description='Compile with Shards')
variant('shylu', default=False,
description='Compile with ShyLU')
variant('teko', default=False,
description='Compile with Teko')
variant('tempus', default=False,
@ -417,6 +419,8 @@ def cmake_args(self):
'ON' if '+sacado' in spec else 'OFF'),
'-DTrilinos_ENABLE_Shards=%s' % (
'ON' if '+shards' in spec else 'OFF'),
'-DTrilinos_ENABLE_ShyLU=%s' % (
'ON' if '+shylu' in spec else 'OFF'),
'-DTrilinos_ENABLE_Teko=%s' % (
'ON' if '+teko' in spec else 'OFF'),
'-DTrilinos_ENABLE_Tempus=%s' % (