Trilinos: add ForTrilinos resource (#4660)
This commit is contained in:
parent
a88e93852d
commit
77527ce1ae
1 changed files with 12 additions and 0 deletions
|
@ -147,12 +147,24 @@ class Trilinos(CMakePackage):
|
||||||
description='Compile with explicit instantiation for complex')
|
description='Compile with explicit instantiation for complex')
|
||||||
variant('dtk', default=False,
|
variant('dtk', default=False,
|
||||||
description='Enable DataTransferKit')
|
description='Enable DataTransferKit')
|
||||||
|
variant('fortrilinos', default=False,
|
||||||
|
description='Enable ForTrilinos')
|
||||||
|
|
||||||
resource(name='dtk',
|
resource(name='dtk',
|
||||||
git='https://github.com/ornl-cees/DataTransferKit',
|
git='https://github.com/ornl-cees/DataTransferKit',
|
||||||
tag='master',
|
tag='master',
|
||||||
placement='DataTransferKit',
|
placement='DataTransferKit',
|
||||||
when='+dtk')
|
when='+dtk')
|
||||||
|
resource(name='fortrilinos',
|
||||||
|
git='https://github.com/trilinos/ForTrilinos',
|
||||||
|
tag='develop',
|
||||||
|
placement='packages/ForTrilinos',
|
||||||
|
when='+fortrilinos')
|
||||||
|
|
||||||
conflicts('+dtk', when='~tpetra')
|
conflicts('+dtk', when='~tpetra')
|
||||||
|
conflicts('+fortrilinos', when='~fortran')
|
||||||
|
conflicts('+fortrilinos', when='@:99')
|
||||||
|
conflicts('+fortrilinos', when='@master')
|
||||||
|
|
||||||
# ###################### Dependencies ##########################
|
# ###################### Dependencies ##########################
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue