Skip to content

Commit abc5718

Browse files
committed
Add monitoring package dependency
1 parent 5f9349c commit abc5718

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ find_package(Boost 1.56
8282
find_package(Git QUIET)
8383
find_package(Common REQUIRED)
8484
find_package(Configuration REQUIRED)
85+
find_package(Monitoring REQUIRED)
8586
find_package(InfoLogger REQUIRED)
8687
find_package(PDA)
8788

@@ -174,6 +175,7 @@ target_link_libraries(ReadoutCard
174175
AliceO2::InfoLogger
175176
AliceO2::Common
176177
AliceO2::Configuration
178+
AliceO2::Monitoring
177179
$<$<BOOL:${Python2_FOUND}>:Boost::python27>
178180
$<$<BOOL:${Python2_FOUND}>:Python2::Python>
179181
$<$<BOOL:${Python3_FOUND}>:Boost::python${Python3_VERSION_MAJOR}${Python3_VERSION_MINOR}>

cmake/ReadoutCardConfig.cmake.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include(CMakeFindDependencyMacro)
55

66
set(Common_CMAKE_DIR @Common_DIR@)
77
set(Configuration_CMAKE_DIR @Configuration_DIR@)
8+
set(Monitoring_CMAKE_DIR @Monitoring_DIR@)
89
set(InfoLogger_CMAKE_DIR @InfoLogger_ROOT@)
910

1011
if(NOT APPLE)
@@ -21,6 +22,7 @@ endif()
2122

2223
find_dependency(Common CONFIG HINTS ${Common_CMAKE_DIR})
2324
find_dependency(Configuration CONFIG HINTS ${Configuration_CMAKE_DIR})
25+
find_dependency(Monitoring CONFIG HINTS ${Monitoring_CMAKE_DIR})
2426
find_dependency(InfoLogger CONFIG HINTS ${InfoLogger_CMAKE_DIR})
2527

2628
# find package must be used as Common already looks for boost and set Boost_FOUND

0 commit comments

Comments
 (0)