File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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
613set (sources
714 MCStepInterceptor.cxx
@@ -10,6 +17,8 @@ set(sources
1017
1118add_library (${target} SHARED ${sources} )
1219fairroot_library_settings (${target} )
20+ # Keep old filesystem name
21+ set_target_properties (${target} PROPERTIES OUTPUT_NAME FairMCStepLogger )
1322
1423target_include_directories (${target} PUBLIC
1524 $<BUILD_INTERFACE :${CMAKE_CURRENT_SOURCE_DIR} >
You can’t perform that action at this time.
0 commit comments