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 faa0af0 commit 69dcc0bCopy full SHA for 69dcc0b
cmake/JANAConfig.cmake.in
@@ -4,6 +4,20 @@ find_package(Threads REQUIRED)
4
5
include("${CMAKE_CURRENT_LIST_DIR}/JANATargets.cmake")
6
7
+# Expose public dependencies
8
+include(CMakeFindDependencyMacro)
9
+set(USE_PODIO @USE_PODIO@)
10
+if(USE_PODIO)
11
+ find_dependency(podio REQUIRED)
12
+endif()
13
+set(USE_ROOT @USE_ROOT@)
14
+if(USE_ROOT)
15
+ find_dependency(ROOT REQUIRED)
16
17
+set(USE_ZEROMQ @USE_ZEROMQ@)
18
+if(USE_ZEROMQ)
19
+ find_dependency(ZeroMQ REQUIRED)
20
21
22
# Provide user with shared libraries by default if JANA was built with them.
23
# Otherwise, provide them with the static version. They can always specify themselves
0 commit comments