summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/scorec-core/package.py
blob: b5f4c35efb440d7c4d5b07e36152591edee9c972 (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
25
26
27
28
29
30
31
32
33
34
# Copyright 2013-2024 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 ScorecCore(CMakePackage):
    """The SCOREC Core is a set of C/C++ libraries for unstructured mesh
    simulations on supercomputers.
    """

    homepage = "https://www.scorec.rpi.edu/"
    git = "https://github.com/SCOREC/core.git"

    license("BSD-3-Clause")

    version("develop")

    depends_on("mpi")
    depends_on("zoltan")
    depends_on("cmake@3.0:", type="build")

    def cmake_args(self):
        options = []
        options.append("-DCMAKE_C_COMPILER=%s" % self.spec["mpi"].mpicc)
        options.append("-DCMAKE_CXX_COMPILER=%s" % self.spec["mpi"].mpicxx)
        options.append("-DENABLE_ZOLTAN=ON")

        if self.compiler.name == "xl":
            options.append("-DSCOREC_EXTRA_CXX_FLAGS=%s" % "-qminimaltoc")

        return options