Skip to content
Snippets Groups Projects
Commit 9f8db352 authored by Christos Anastopoulos's avatar Christos Anastopoulos
Browse files

clean up CMakeLists, I assume this is a component only library, i.e the main...

clean up CMakeLists, I assume this is a component only library, i.e the main usage is to run the alg from Athena
parent 485f3c1e
No related branches found
No related tags found
9 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,!36664AFP DQM [rel 22],!36035AFP Run3 merge request - added automatic check,!32548AFP Run3 Monitoring DQ Data Quality - changes in python file,!28689First template for AFP Run3 Monitoring DQ Data Quality
...@@ -5,9 +5,6 @@ ...@@ -5,9 +5,6 @@
# Declare the package name: # Declare the package name:
atlas_subdir( Run3AFPMonitoring ) atlas_subdir( Run3AFPMonitoring )
# Set the minimum required CMake version:
cmake_minimum_required( VERSION 3.6 FATAL_ERROR )
project(../athena/ForwardDetectors/AFP/Run3AFPMonitoring/)
# Declare the package's dependencies: # Declare the package's dependencies:
atlas_depends_on_subdirs( atlas_depends_on_subdirs(
...@@ -36,23 +33,14 @@ atlas_depends_on_subdirs( ...@@ -36,23 +33,14 @@ atlas_depends_on_subdirs(
) )
# External dependencies: # External dependencies:
find_package( CORAL COMPONENTS CoralBase CoralKernel RelationalAccess )
find_package( Boost )
find_package( ROOT COMPONENTS Core ) find_package( ROOT COMPONENTS Core )
# Component(s) in the package: # Component(s) in the package:
atlas_add_library( atlas_add_component( Run3AFPMonitoring
Run3AFPMonitoringLib Run3AFPMonitoring/*.h src/*.cxx src/components/*.cxx
src/*.cxx
PUBLIC_HEADERS
Run3AFPMonitoring
INCLUDE_DIRS INCLUDE_DIRS
${ROOT_INCLUDE_DIRS} ${ROOT_INCLUDE_DIRS}
PRIVATE_INCLUDE_DIRS
${Boost_INCLUDE_DIRS}
${CORAL_INCLUDE_DIRS}
LINK_LIBRARIES LINK_LIBRARIES
${Boost_LIBRARIES}
${ROOT_LIBRARIES} ${ROOT_LIBRARIES}
AthenaBaseComps AthenaBaseComps
AthenaMonitoringLib AthenaMonitoringLib
...@@ -61,8 +49,7 @@ atlas_add_library( ...@@ -61,8 +49,7 @@ atlas_add_library(
LumiBlockCompsLib LumiBlockCompsLib
LumiBlockData LumiBlockData
TrigDecisionToolLib TrigDecisionToolLib
PRIVATE_LINK_LIBRARIES xAODForward
${CORAL_LIBRARIES}
AthenaKernel AthenaKernel
SGAudCore SGAudCore
AthenaPoolUtilities AthenaPoolUtilities
...@@ -70,27 +57,5 @@ atlas_add_library( ...@@ -70,27 +57,5 @@ atlas_add_library(
LWHists LWHists
) )
atlas_add_component(
Run3AFPMonitoring
src/components/*.cxx
INCLUDE_DIRS
${CORAL_INCLUDE_DIRS}
LINK_LIBRARIES
Run3AFPMonitoringLib
AthenaMonitoringLib
AthenaMonitoringKernelLib
LumiBlockData
LWHists
AFPSiHit
xAODForward
SGAudCore
TrigDecisionToolLib
)
# Install files from the package:
#atlas_install_python_modules( python/*.py
# POST_BUILD_CMD ${ATLAS_FLAKE8} )
atlas_install_joboptions( share/*.py )
atlas_install_python_modules( python/*.py ) atlas_install_python_modules( python/*.py )
#atlas_install_scripts( share/Run3DQTestingDriver.py share/hist_file_dump.py share/hist_diff.sh )
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