cajita: got merged in cabana (#16971)

This commit is contained in:
Christoph Junghans 2020-06-05 12:38:07 -06:00 committed by GitHub
parent 89cc507cf6
commit 76abf35813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 30 deletions

View File

@ -1,29 +0,0 @@
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Cajita(CMakePackage):
"""An MPI+Kokkos library for logically rectilinear grids"""
homepage = "https://github.com/ECP-copa/Cajita"
git = "https://github.com/ECP-copa/Cajita.git"
version('master', branch='master')
version('0.1', tag='0.1.0')
variant('shared', default=True, description='Build shared libraries')
depends_on('mpi')
depends_on('kokkos@3.0:')
def cmake_args(self):
options = [
'-DBUILD_SHARED_LIBS=%s' % (
'On' if '+shared' in self.spec else 'Off')
]
return options

View File

@ -22,7 +22,6 @@ class Exampm(CMakePackage):
depends_on('kokkos@3.0:') depends_on('kokkos@3.0:')
depends_on('silo') depends_on('silo')
depends_on('cabana+mpi@master') depends_on('cabana+mpi@master')
depends_on('cajita@master')
def cmake_args(self): def cmake_args(self):
options = [ options = [