Files
ortools-clone/cmake/system_deps.cmake

131 lines
3.4 KiB
CMake
Raw Permalink Normal View History

2025-01-10 11:35:44 +01:00
# Copyright 2010-2025 Google LLC
2022-06-17 14:23:05 +02:00
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2020-10-16 22:21:21 +02:00
# Check dependencies
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
set(THREAD_PREFER_PTHREAD_FLAG TRUE)
find_package(Threads REQUIRED)
# Tell find_package() to try “Config” mode before “Module” mode if no mode was specified.
# This should avoid find_package() to first find our FindXXX.cmake modules if
# distro package already provide a CMake config file...
set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE)
# libprotobuf force us to depends on ZLIB::ZLIB target
2025-03-26 10:53:14 +01:00
if(NOT BUILD_ZLIB AND NOT TARGET ZLIB::ZLIB)
2020-10-16 22:21:21 +02:00
find_package(ZLIB REQUIRED)
endif()
if(NOT BUILD_BZip2 AND NOT TARGET BZip2::BZip2)
find_package(BZip2 REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_absl AND NOT TARGET absl::base)
2020-10-16 22:21:21 +02:00
find_package(absl REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Protobuf AND NOT TARGET protobuf::libprotobuf)
2020-10-16 22:21:21 +02:00
find_package(Protobuf REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Eigen3 AND NOT TARGET Eigen3::Eigen)
2024-02-09 01:00:02 +01:00
find_package(Eigen3 REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_re2 AND NOT TARGET re2::re2)
find_package(re2 REQUIRED)
2021-11-19 09:24:08 +01:00
endif()
2025-03-26 10:53:14 +01:00
# Third Party Solvers
2020-10-16 22:21:21 +02:00
if(USE_COINOR)
2025-03-26 10:53:14 +01:00
if(NOT BUILD_CoinUtils AND NOT TARGET Coin::CoinUtils)
2020-10-16 22:21:21 +02:00
find_package(CoinUtils REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Osi AND NOT TARGET Coin::Osi)
2020-10-16 22:21:21 +02:00
find_package(Osi REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Clp AND NOT TARGET Coin::ClpSolver)
2020-10-16 22:21:21 +02:00
find_package(Clp REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Cgl AND NOT TARGET Coin::Cgl)
2020-10-16 22:21:21 +02:00
find_package(Cgl REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_Cbc AND NOT TARGET Coin::CbcSolver)
2020-10-16 22:21:21 +02:00
find_package(Cbc REQUIRED)
endif()
endif()
2025-03-26 10:53:14 +01:00
if(USE_CPLEX)
if(NOT TARGET CPLEX::CPLEX)
find_package(CPLEX REQUIRED)
endif()
2022-05-02 16:02:54 +02:00
endif()
2025-03-26 10:53:14 +01:00
if(USE_GLPK)
if(NOT BUILD_GLPK AND NOT TARGET GLPK::GLPK)
find_package(GLPK REQUIRED)
endif()
2022-10-05 18:33:43 +02:00
endif()
2025-03-26 10:53:14 +01:00
if(USE_HIGHS)
if(NOT BUILD_HIGHS AND NOT TARGET highs::highs)
find_package(HIGHS REQUIRED)
endif()
2022-05-02 16:02:54 +02:00
endif()
2025-03-26 10:53:14 +01:00
if(USE_PDLP)
if(NOT BUILD_PDLP)
find_package(PDLP REQUIRED)
endif()
2022-05-02 16:02:54 +02:00
endif()
2025-03-26 10:53:14 +01:00
if(USE_SCIP)
if(NOT BUILD_SCIP AND NOT TARGET SCIP::libscip)
find_package(SCIP REQUIRED)
if(TARGET libscip AND NOT TARGET SCIP::libscip)
message(WARNING "SCIP::libscip not provided")
add_library(SCIP::libscip ALIAS libscip)
endif()
2025-03-26 10:53:14 +01:00
endif()
2020-10-16 22:21:21 +02:00
endif()
# CXX Test
2025-03-26 10:53:14 +01:00
if(BUILD_TESTING)
if(NOT BUILD_googletest AND NOT TARGET GTest::gtest_main)
find_package(GTest REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_benchmark AND NOT TARGET benchmark::benchmark)
find_package(benchmark REQUIRED)
endif()
2024-11-15 09:56:36 +01:00
endif()
2022-02-21 10:51:33 +01:00
# Check language Dependencies
if(BUILD_PYTHON)
2025-03-26 10:53:14 +01:00
if(NOT BUILD_pybind11 AND NOT TARGET pybind11::pybind11_headers)
2022-02-21 10:51:33 +01:00
find_package(pybind11 REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_pybind11_abseil AND NOT TARGET pybind11_abseil::absl_casters)
2024-07-18 18:47:55 +02:00
find_package(pybind11_abseil REQUIRED)
endif()
2025-03-26 10:53:14 +01:00
if(NOT BUILD_pybind11_protobuf AND NOT TARGET pybind11_native_proto_caster)
find_package(pybind11_protobuf REQUIRED)
endif()
2022-02-21 10:51:33 +01:00
endif()