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

TrigPSC: cmake cleanup

parent 282fce5d
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: TrigPSC
################################################################################
# Declare the package name: # Declare the package name:
atlas_subdir( TrigPSC ) atlas_subdir( TrigPSC )
# External dependencies: # External dependencies:
find_package( Boost COMPONENTS filesystem thread system ) find_package( Boost )
find_package( Python COMPONENTS Development ) find_package( Python COMPONENTS Development )
find_package( tdaq-common COMPONENTS ers eformat eformat_write hltinterface ) find_package( tdaq-common COMPONENTS ers eformat eformat_write hltinterface )
...@@ -14,10 +12,10 @@ find_package( tdaq-common COMPONENTS ers eformat eformat_write hltinterface ) ...@@ -14,10 +12,10 @@ find_package( tdaq-common COMPONENTS ers eformat eformat_write hltinterface )
atlas_add_library( TrigPSC atlas_add_library( TrigPSC
src/*.cxx src/*.cxx
PUBLIC_HEADERS TrigPSC PUBLIC_HEADERS TrigPSC
INCLUDE_DIRS ${TDAQ-COMMON_INCLUDE_DIRS} INCLUDE_DIRS ${Boost_INCLUDE_DIRS} ${TDAQ-COMMON_INCLUDE_DIRS}
PRIVATE_INCLUDE_DIRS ${Boost_INCLUDE_DIRS} ${Python_INCLUDE_DIRS} PRIVATE_INCLUDE_DIRS ${Python_INCLUDE_DIRS}
LINK_LIBRARIES ${TDAQ-COMMON_LIBRARIES} GaudiKernel LINK_LIBRARIES ${Boost_LIBRARIES} ${TDAQ-COMMON_LIBRARIES} GaudiKernel
PRIVATE_LINK_LIBRARIES ${Boost_LIBRARIES} ${Python_LIBRARIES} TrigKernel PathResolver TrigConfBase ) PRIVATE_LINK_LIBRARIES ${Python_LIBRARIES} CxxUtils TrigKernel PathResolver )
# Install files from the package: # Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} ) atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
......
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