Skip to content

Commit

Permalink
Add cepcsw
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Mar 10, 2024
1 parent 8dae994 commit d9dd2cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/key4hep-stack/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Key4hepStack(BundlePackage, Key4hepPackage):
depends_on("k4reccalorimeter")
depends_on("k4rectracker")

# depends_on("cepcsw")
depends_on("cepcsw")

depends_on("opendatadetector")

Expand Down
6 changes: 5 additions & 1 deletion packages/lccd/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,9 @@ class Lccd(CMakePackage, Ilcsoftpackage):
def cmake_args(self):
args = []
args.append(self.define_from_variant("LCCD_CONDDBMYSQL", "conddbmysql"))
args.append(self.define("CMAKE_CXX_STANDARD", self.spec["lcio"].variants["cxxstd"].value))
args.append(
self.define(
"CMAKE_CXX_STANDARD", self.spec["lcio"].variants["cxxstd"].value
)
)
return args
4 changes: 3 additions & 1 deletion packages/marlin/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def cmake_args(self):
args.append(self.define_from_variant("MARLIN_LCCD", "lccd"))
args.append(self.define_from_variant("MARLIN_CLHEP", "clhep"))
args.append(self.define_from_variant("MARLIN_AIDA", "aida"))
args.append(f"-DCMAKE_CXX_STANDARD={self.spec['lcio'].variants['cxxstd'].value}")
args.append(
f"-DCMAKE_CXX_STANDARD={self.spec['lcio'].variants['cxxstd'].value}"
)
if "aida" in self.spec:
args.append("-DAIDA_DIR=%s" % self.spec["aida"].prefix)
return args

0 comments on commit d9dd2cd

Please sign in to comment.