diff --git a/Simulation/G4Utilities/G4TruthStrategies/CMakeLists.txt b/Simulation/G4Utilities/G4TruthStrategies/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..3f974b5e87287489e742dd775b8dc6ab86d9201d --- /dev/null +++ b/Simulation/G4Utilities/G4TruthStrategies/CMakeLists.txt @@ -0,0 +1,27 @@ +################################################################################ +# Package: G4TruthStrategies +################################################################################ + +# Declare the package name: +atlas_subdir( G4TruthStrategies ) + +# Declare the package's dependencies: +atlas_depends_on_subdirs( PUBLIC + Simulation/G4Sim/MCTruthBase + PRIVATE + Simulation/G4Sim/MCTruth ) + +# External dependencies: +find_package( CLHEP ) +find_package( Geant4 ) +find_package( XercesC ) + +# Component(s) in the package: +atlas_add_library( G4TruthStrategies + src/*.cxx + PUBLIC_HEADERS G4TruthStrategies + PRIVATE_INCLUDE_DIRS ${GEANT4_INCLUDE_DIRS} ${XERCESC_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} + PRIVATE_DEFINITIONS ${CLHEP_DEFINITIONS} + LINK_LIBRARIES MCTruthBaseLib + PRIVATE_LINK_LIBRARIES ${GEANT4_LIBRARIES} ${XERCESC_LIBRARIES} ${CLHEP_LIBRARIES} MCTruth ) +