add teuchos to Trilinos, update dealii to explicitly require certain packages (#4460)

This commit is contained in:
Denis Davydov
2017-06-09 14:10:54 +02:00
committed by Adam J. Stewart
parent 85fd8f0b31
commit 5c5fd4a7e3
2 changed files with 11 additions and 8 deletions

View File

@@ -111,6 +111,8 @@ class Trilinos(CMakePackage):
description='Compile with zlib')
variant('stk', default=False,
description='Compile with STK')
variant('teuchos', default=True,
description='Compile with Teuchos')
variant('belos', default=True,
description='Compile with Belos')
variant('zoltan', default=True,
@@ -287,6 +289,8 @@ def cmake_args(self):
'ON' if '+ifpack2' in spec else 'OFF'),
'-DTrilinos_ENABLE_Gtest:BOOL=%s' % (
'ON' if '+gtest' in spec else 'OFF'),
'-DTrilinos_ENABLE_Teuchos:BOOL=%s' % (
'ON' if '+teuchos' in spec else 'OFF'),
])
if '+xsdkflags' in spec: