spack/var/spack/repos/builtin/packages/sst-transports/package.py
2022-01-14 22:50:21 -08:00

26 lines
686 B
Python

# Copyright 2013-2022 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 SstTransports(CMakePackage):
"""Provides transports like uGNI and verbs
that run in the simulator"""
homepage = "https://github.com/sstsimulator"
git = "https://github.com/jjwilke/sst-transports.git"
maintainers = ['jjwilke']
version('master', branch='master')
depends_on("sst-macro")
def cmake_args(self):
args = []
args.append("-DSSTMacro_ROOT=%s" % self.spec["sst-macro"].prefix)
return args