-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify a bit the dual-readout recipe
- Loading branch information
Showing
1 changed file
with
1 addition
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ class DualReadout(CMakePackage, Key4hepPackage): | |
) | ||
|
||
depends_on("dd4hep") | ||
depends_on("edm4hep@0.4.1:") | ||
depends_on("edm4hep") | ||
depends_on("[email protected]:") | ||
depends_on("[email protected]:", when="@0.1.1:") | ||
depends_on("py-jinja2", type=("build")) | ||
|
@@ -53,7 +53,6 @@ class DualReadout(CMakePackage, Key4hepPackage): | |
depends_on("pythia8") | ||
depends_on("hsf-cmaketools") | ||
depends_on("k4fwcore") | ||
depends_on("[email protected]:") | ||
depends_on("simsipm") | ||
|
||
def cmake_args(self): | ||
|
@@ -62,8 +61,6 @@ def cmake_args(self): | |
args.append( | ||
f"-DCMAKE_CXX_STANDARD={self.spec['root'].variants['cxxstd'].value}" | ||
) | ||
if self.spec.satisfies("^gaudi@:34.99"): | ||
args.append("-DHOST_BINARY_TAG=x86_64-linux-gcc9-opt") | ||
return args | ||
|
||
def setup_build_environment(self, env): | ||
|