Skip to content

Commit

Permalink
Add FCC-config (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Jun 16, 2024
1 parent 7dbfdbb commit 6ba0072
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions packages/fcc-config/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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 Fccconfig(CMakePackage):
""""""

homepage = "https://github.com/HEP-FCC/FCC-config"
git = "https://github.com/HEP-FCC/FCC-config"

maintainers = ["jmcarcell"]

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

def cmake_args(self):
args = []
args.append("-DBUILD_TESTING=%s" % self.run_tests)
return args

def setup_run_environment(self, env):
env.prepend_path("FCCCONFIG", self.prefix)
1 change: 1 addition & 0 deletions packages/key4hep-stack/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class Key4hepStack(BundlePackage, Key4hepPackage):
depends_on("dd4hep")
depends_on("delphes")
depends_on("edm4hep")
depends_on("fcc-config")
depends_on("geant4+qt")
depends_on("guinea-pig")
# depends_on('k4actstracking')
Expand Down
1 change: 1 addition & 0 deletions scripts/fetch_nightly_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def get_latest_commit(
("edm4hep", "key4hep/edm4hep"),
("fcalclusterer", "fcalsw/fcalclusterer"),
("fccanalyses", "hep-fcc/fccanalyses"),
("fcc-config", "hep-fcc/fcc-config"),
("fccdetectors", "hep-fcc/fccdetectors"),
("fccsw", "hep-fcc/fccsw"),
("forwardtracking", "ilcsoft/forwardtracking"),
Expand Down

0 comments on commit 6ba0072

Please sign in to comment.