Skip to content
Snippets Groups Projects
Commit a838ab76 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrkUtilityPackages: cmake cleanup

Remove `atlas_depends_on_subdirs`, fix library and external
dependencies.
parent 9067fa9b
No related branches found
No related tags found
No related merge requests found
################################################################################ # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Package: TrkDriftCircleMath
################################################################################
# Declare the package name: # Declare the package name:
atlas_subdir( TrkDriftCircleMath ) atlas_subdir( TrkDriftCircleMath )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Control/CxxUtils
GaudiKernel )
# Component(s) in the package: # Component(s) in the package:
atlas_add_library( TrkDriftCircleMath atlas_add_library( TrkDriftCircleMath
src/*.cxx src/*.cxx
PUBLIC_HEADERS TrkDriftCircleMath PUBLIC_HEADERS TrkDriftCircleMath
LINK_LIBRARIES CxxUtils GaudiKernel ) LINK_LIBRARIES CxxUtils GaudiKernel )
################################################################################ # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Package: TrkNeuralNetworkUtils
################################################################################
# Declare the package name: # Declare the package name:
atlas_subdir( TrkNeuralNetworkUtils ) atlas_subdir( TrkNeuralNetworkUtils )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
Control/AthenaBaseComps
PRIVATE
GaudiKernel )
# External dependencies: # External dependencies:
find_package( Boost COMPONENTS filesystem thread system ) find_package( Boost )
find_package( ROOT COMPONENTS Matrix Cint Core Tree MathCore Hist RIO pthread MathMore Minuit Minuit2 Physics HistPainter Rint ) find_package( ROOT COMPONENTS Matrix Core Tree MathCore Hist )
# Component(s) in the package: # Component(s) in the package:
atlas_add_root_dictionary( TrkNeuralNetworkUtilsLib atlas_add_root_dictionary( TrkNeuralNetworkUtilsLib
...@@ -32,8 +24,7 @@ atlas_add_library( TrkNeuralNetworkUtilsLib ...@@ -32,8 +24,7 @@ atlas_add_library( TrkNeuralNetworkUtilsLib
atlas_add_component( TrkNeuralNetworkUtils atlas_add_component( TrkNeuralNetworkUtils
src/components/*.cxx src/components/*.cxx
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} LINK_LIBRARIES TrkNeuralNetworkUtilsLib )
LINK_LIBRARIES ${ROOT_LIBRARIES} ${Boost_LIBRARIES} AthenaBaseComps GaudiKernel TrkNeuralNetworkUtilsLib )
atlas_add_test( test_buffer atlas_add_test( test_buffer
SOURCES test/test_TargetBuffer_t.cxx ) SOURCES test/test_TargetBuffer_t.cxx )
################################################################################ # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Package: TrkValidationUtils
################################################################################
# Declare the package name: # Declare the package name:
atlas_subdir( TrkValidationUtils ) atlas_subdir( TrkValidationUtils )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
DetectorDescription/GeoPrimitives
Event/EventPrimitives
PRIVATE
Tracking/TrkDetDescr/TrkSurfaces )
# External dependencies: # External dependencies:
find_package( CLHEP ) find_package( CLHEP )
find_package( Eigen )
find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread ) find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread )
# Component(s) in the package: # Component(s) in the package:
atlas_add_library( TrkValidationUtils atlas_add_library( TrkValidationUtils
src/*.cxx src/*.cxx
PUBLIC_HEADERS TrkValidationUtils PUBLIC_HEADERS TrkValidationUtils
INCLUDE_DIRS ${CLHEP_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS} INCLUDE_DIRS ${CLHEP_INCLUDE_DIRS}
PRIVATE_INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} PRIVATE_INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
DEFINITIONS ${CLHEP_DEFINITIONS} DEFINITIONS ${CLHEP_DEFINITIONS}
LINK_LIBRARIES ${CLHEP_LIBRARIES} ${EIGEN_LIBRARIES} GeoPrimitives EventPrimitives LINK_LIBRARIES ${CLHEP_LIBRARIES} GeoPrimitives EventPrimitives
PRIVATE_LINK_LIBRARIES ${ROOT_LIBRARIES} TrkSurfaces ) PRIVATE_LINK_LIBRARIES ${ROOT_LIBRARIES} TrkSurfaces )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment