Skip to content
Snippets Groups Projects

AthenaAuditors: add missing zlib dependency for CentOS9

Merged Johannes Elmsheuser requested to merge elmsheus/athena:athenaauditors_20220704 into master
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -8,11 +8,12 @@ find_package( Boost )
find_package( gdb )
find_package( gperftools )
find_package( libunwind )
find_package( ZLIB )
# Component(s) in the package:
atlas_add_component( AthenaAuditors
src/*.h src/*.cxx src/components/*.cxx
DEFINITIONS PACKAGE=AthenaAuditors
INCLUDE_DIRS ${Boost_INCLUDE_DIRS} ${GDB_INCLUDE_DIRS} ${LIBUNWIND_INCLUDE_DIRS} ${GPERFTOOLS_INCLUDE_DIRS}
LINK_LIBRARIES ${Boost_LIBRARIES} ${GDB_LIBRARIES} ${LIBUNWIND_LIBRARIES} ${CMAKE_DL_LIBS}
INCLUDE_DIRS ${Boost_INCLUDE_DIRS} ${GDB_INCLUDE_DIRS} ${LIBUNWIND_INCLUDE_DIRS} ${GPERFTOOLS_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS}
LINK_LIBRARIES ${Boost_LIBRARIES} ${GDB_LIBRARIES} ${LIBUNWIND_LIBRARIES} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}
AthenaBaseComps AthenaKernel CxxUtils GaudiKernel )
Loading