summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/stdexec/package.py
blob: dc92c14e8b896529406e364a0543e679729dd9a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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.package import *


class Stdexec(CMakePackage):
    """The proposed C++ framework for asynchronous and parallel programming."""

    homepage = "https://github.com/NVIDIA/stdexec"
    git = "https://github.com/NVIDIA/stdexec.git"
    maintainers = ["msimberg", "aurianer"]

    version("main", branch="main")

    depends_on("cmake@3.22.1:", type="build")

    conflicts("%gcc@:10")
    conflicts("%clang@:13")

    def build(self, spec, prefix):
        pass