Skip to content

Commit e2f3f0a

Browse files
Rename FairRoot::FairMCStepLogger to FairRoot::MCStepLogger
1 parent ebf61b4 commit e2f3f0a

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,13 @@ file an issue, so that we can see how to handle this.
8383
for libraries are now exported.
8484
Some have names different from the filesystem library name.
8585
86-
| Old Library Name | Target Name |
87-
| --- | --- |
88-
| TrkBase | `FairRoot::TrackBase` |
89-
| FairDataMatch | `FairRoot::DataMatch` |
90-
| FairTools | `FairRoot::Tools` |
91-
| FairFastSim | `FairRoot::FastSim` |
86+
| Old Library Name | Target Name |
87+
| --- | --- |
88+
| TrkBase | `FairRoot::TrackBase` |
89+
| FairDataMatch | `FairRoot::DataMatch` |
90+
| FairTools | `FairRoot::Tools` |
91+
| FairFastSim | `FairRoot::FastSim` |
92+
| FairMCStepLogger | `FairRoot::MCStepLogger` |
9293
9394
All those not listed here have the library name prefixed
9495
with `FairRoot::` as the target name.

fairtools/MCStepLogger/CMakeLists.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1+
################################################################################
2+
# Copyright (C) 2022 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH #
3+
# #
4+
# This software is distributed under the terms of the #
5+
# GNU Lesser General Public Licence (LGPL) version 3, #
6+
# copied verbatim in the file "LICENSE" #
7+
################################################################################
18
# @author Sandro Wenzel
29
# @brief cmake setup for module Utilities/MCStepLogger
310

4-
set(target FairMCStepLogger)
11+
set(target MCStepLogger)
512

613
set(sources
714
MCStepInterceptor.cxx
@@ -10,6 +17,8 @@ set(sources
1017

1118
add_library(${target} SHARED ${sources})
1219
fairroot_library_settings(${target})
20+
# Keep old filesystem name
21+
set_target_properties(${target} PROPERTIES OUTPUT_NAME FairMCStepLogger)
1322

1423
target_include_directories(${target} PUBLIC
1524
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>

0 commit comments

Comments
 (0)