Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Until May 2022 (inclusive) no changelog was kept. We might try to reconstruct it
* defaults-actstracking: Removed all overrides unrelated to ACTS or C++20.
* ACTS: Disabled all GEANT4 build options required for examples.
* Move to C++20
* Genfit: Update to upstream 2.3.0

### Removed

Expand Down
6 changes: 4 additions & 2 deletions genfit.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package: GenFit
version: main
source: https://github.com/olantwin/GenFit
version: 02-03-00
source: https://github.com/GenFit/GenFit
requires:
- ROOT
- googletest # should be build dep?
Expand All @@ -17,6 +17,7 @@ prefer_system_check: |
ls $GENFIT_ROOT/include && \
ls $GENFIT_ROOT/lib
---
#!/bin/bash -e
: ${BUILD_TESTING:=OFF}
cmake $SOURCEDIR \
${CMAKE_GENERATOR:+-G "$CMAKE_GENERATOR"} \
Expand All @@ -29,6 +30,7 @@ cmake $SOURCEDIR
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
-DCMAKE_POLICY_DEFAULT_CMP0074=NEW \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
-DROOT_DIR="${ROOT_ROOT}" \
-DBUILD_TESTING=${BUILD_TESTING}

Expand Down