-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
ortoolsConfig.cmake.in
74 lines (61 loc) · 1.7 KB
/
ortoolsConfig.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
## ortools CMake configuration file
set(@PACKAGE_PREFIX@_VERSION @PROJECT_VERSION@)
@PACKAGE_INIT@
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/modules")
include(CMakeFindDependencyMacro)
# Kitware CMake provide a FindZLIB.cmake module
if(NOT TARGET ZLIB::ZLIB)
find_dependency(ZLIB REQUIRED)
endif()
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.9.6")
set(CONFIG_FLAG CONFIG)
endif()
if(NOT TARGET absl::base)
find_dependency(absl REQUIRED ${CONFIG_FLAG})
endif()
if(NOT TARGET protobuf::libprotobuf)
# CMake provide a FindProtobuf module so we don't want to use the CONFIG_FLAG
# also most distro still use the autotools based build for Protobuf.
# ref: https://cmake.org/cmake/help/latest/module/FindProtobuf.html
if(@BUILD_Protobuf@)
find_dependency(Protobuf CONFIG REQUIRED)
else()
find_dependency(Protobuf REQUIRED)
endif()
endif()
if(@BUILD_LP_PARSER@)
# re2 may not provide a CMake config files
if(NOT TARGET re2::re2)
find_dependency(re2 REQUIRED)
endif()
endif()
if(@USE_COINOR@)
# COIN-OR packages don't provide CMake config files
if(NOT TARGET Coin::ClpSolver)
find_dependency(Clp REQUIRED)
endif()
if(NOT TARGET Coin::CbcSolver)
find_dependency(Cbc REQUIRED)
endif()
endif()
if(@USE_GLPK@)
if(NOT TARGET GLPK::GLPK)
find_dependency(GLPK REQUIRED)
endif()
endif()
if(@USE_HIGHS@)
if(NOT TARGET highs::highs)
find_dependency(highs REQUIRED ${CONFIG_FLAG})
endif()
endif()
if(@USE_PDLP@)
if(NOT TARGET Eigen3::Eigen)
find_dependency(Eigen3 REQUIRED)
endif()
endif()
if(@USE_SCIP@)
if(NOT TARGET libscip)
find_dependency(SCIP REQUIRED)
endif()
endif()
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]")