File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ find_package(Boost 1.56
8282find_package (Git QUIET )
8383find_package (Common REQUIRED)
8484find_package (Configuration REQUIRED)
85+ find_package (Monitoring REQUIRED)
8586find_package (InfoLogger REQUIRED)
8687find_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} >
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ include(CMakeFindDependencyMacro)
55
66set (Common_CMAKE_DIR @Common_DIR@)
77set (Configuration_CMAKE_DIR @Configuration_DIR@)
8+ set (Monitoring_CMAKE_DIR @Monitoring_DIR@)
89set (InfoLogger_CMAKE_DIR @InfoLogger_ROOT@)
910
1011if (NOT APPLE )
@@ -21,6 +22,7 @@ endif()
2122
2223find_dependency(Common CONFIG HINTS ${Common_CMAKE_DIR} )
2324find_dependency(Configuration CONFIG HINTS ${Configuration_CMAKE_DIR} )
25+ find_dependency(Monitoring CONFIG HINTS ${Monitoring_CMAKE_DIR} )
2426find_dependency(InfoLogger CONFIG HINTS ${InfoLogger_CMAKE_DIR} )
2527
2628# find package must be used as Common already looks for boost and set Boost_FOUND
You can’t perform that action at this time.
0 commit comments