We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a64feb2 commit 734843dCopy full SHA for 734843d
cmake/ReadoutCardConfig.cmake.in
@@ -6,9 +6,22 @@ include(CMakeFindDependencyMacro)
6
set(Common_CMAKE_DIR @Common_DIR@)
7
set(InfoLogger_CMAKE_DIR @InfoLogger_DIR@)
8
9
+if(NOT APPLE)
10
+ set(boost_python_component "python27")
11
+ find_dependency(Python2 2.7 COMPONENTS Development REQUIRED)
12
+endif()
13
+
14
+find_dependency(Boost
15
+ COMPONENTS
16
+ unit_test_framework
17
+ filesystem
18
+ system
19
+ program_options
20
+ ${boost_python_component}
21
+ REQUIRED
22
+)
23
find_dependency(Common CONFIG REQUIRED HINTS ${Common_CMAKE_DIR})
24
find_dependency(InfoLogger CONFIG REQUIRED HINTS ${InfoLogger_CMAKE_DIR})
-find_dependency(Boost)
25
26
if(NOT TARGET AliceO2::ReadoutCard)
27
include("${ReadoutCard_CMAKE_DIR}/ReadoutCardTargets.cmake")
0 commit comments