Skip to content
Snippets Groups Projects
Commit 386e0af0 authored by vishalkenchan's avatar vishalkenchan Committed by Todd Gamblin
Browse files

add rol variant (#6105)

parent 9d234c4f
Branches
Tags
No related merge requests found
......@@ -154,6 +154,8 @@ class Trilinos(CMakePackage):
description='Enable ForTrilinos')
variant('openmp', default=False,
description='Enable OpenMP')
variant('rol', default=False,
description='Enable ROL')
variant('nox', default=False,
description='Enable NOX')
variant('shards', default=False,
......@@ -309,6 +311,8 @@ def cmake_args(self):
'ON' if '+teuchos' in spec else 'OFF'),
'-DTrilinos_ENABLE_Anasazi:BOOL=%s' % (
'ON' if '+anasazi' in spec else 'OFF'),
'-DTrilinos_ENABLE_ROL:BOOL=%s' % (
'ON' if '+rol' in spec else 'OFF'),
'-DTrilinos_ENABLE_NOX:BOOL=%s' % (
'ON' if '+nox' in spec else 'OFF'),
'-DTrilinos_ENABLE_Shards=%s' % (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment