-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathscrConfig.cmake.in
36 lines (28 loc) · 993 Bytes
/
scrConfig.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(er REQUIRED)
find_dependency(redset REQUIRED)
find_dependency(shuffile REQUIRED)
find_dependency(axl REQUIRED)
find_dependency(kvtree REQUIRED)
find_dependency(rankstr REQUIRED)
find_dependency(spath REQUIRED)
find_dependency(MPI REQUIRED)
# The packages below do not have cmake package config files.
# Instead, we provide cmake find module files, like FindDTCMP.cmake.
# This way users who build with cmake don't have to write their own.
# The line below registers the current working directory with cmake
# so that it can find the Find*.cmake module files.
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
find_dependency(DTCMP REQUIRED)
find_dependency(LWGRP REQUIRED)
IF(@MYSQL_FOUND@)
find_dependency(MySQL REQUIRED)
ENDIF()
IF(@PDSH_FOUND@)
find_dependency(PDSH REQUIRED)
ENDIF()
IF(@YOGRT_FOUND@)
find_dependency(YOGRT REQUIRED)
ENDIF()
include("${CMAKE_CURRENT_LIST_DIR}/scrTargets.cmake")