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

Merge branch 'AnalysisBaseThreadsFix-master-20200525' into 'master'

AnalysisBase Threads Fix, master branch (2020.05.25.)

See merge request !33154
parents 772b6813 c39297dd
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!33154AnalysisBase Threads Fix, master branch (2020.05.25.)
......@@ -34,10 +34,13 @@ atlas_ctest_setup()
atlas_project( USE AnalysisBaseExternals ${AnalysisBaseExternals_VERSION}
PROJECT_ROOT ${CMAKE_SOURCE_DIR}/../../ )
# Configure and install the post-configuration file:
# Configure and install the pre/post-configuration files:
configure_file( ${CMAKE_SOURCE_DIR}/cmake/PreConfig.cmake.in
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/PreConfig.cmake @ONLY )
configure_file( ${CMAKE_SOURCE_DIR}/cmake/PostConfig.cmake.in
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/PostConfig.cmake @ONLY )
install( FILES ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/PostConfig.cmake
install( FILES ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/PreConfig.cmake
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/PostConfig.cmake
DESTINATION ${CMAKE_INSTALL_CMAKEDIR} )
# Generate replacement rules for the installed paths:
......
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
#
# File setting up imported targets needed by the exported targets of
# @CMAKE_PROJECT_NAME@.
#
# Figure out whether to use QUIET in the find_package call(s).
set( _quietFlag )
if( @CMAKE_PROJECT_NAME@_FIND_QUIETLY )
set( _quietFlag QUIET )
endif()
# Imported target(s) used by the project.
find_package( Threads ${_quietFlag} )
# Clean up.
unset( _quietFlag )
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