Skip to content
Open
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 Detectors/Upgrades/ALICE3/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

add_subdirectory(Passive)
add_subdirectory(TRK)
add_subdirectory(GlobalReconstruction)
add_subdirectory(ECal)
add_subdirectory(FD3)
add_subdirectory(FT3)
Expand Down
14 changes: 14 additions & 0 deletions Detectors/Upgrades/ALICE3/GlobalReconstruction/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
# All rights not expressly granted are reserved.
#
# This software is distributed under the terms of the GNU General Public
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
#
# In applying this license CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.

add_subdirectory(reconstruction)
add_subdirectory(workflow)
add_subdirectory(macros)
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2019-2020 CERN and copyright holders of ALICE O2.
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
# All rights not expressly granted are reserved.
#
# This software is distributed under the terms of the GNU General Public
# License v3 (GPL Version 3), copied verbatim in the file "COPYING".
#
# In applying this license CERN does not waive the privileges and immunities
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.

o2_add_test_root_macro(CheckTracksALICE3.C
PUBLIC_LINK_LIBRARIES O2::DataFormatsITS
O2::DataFormatsTRK
O2::ITStracking
O2::SimulationDataFormat
O2::DetectorsBase
O2::TRKBase
O2::TRKSimulation
O2::Steer
LABELS trk COMPILE_ONLY)
Loading