Files
ortools-clone/cmake/FindCbc.cmake
2022-01-19 20:14:05 +01:00

52 lines
1.3 KiB
CMake

#[=======================================================================[.rst:
FindCbc
--------
This module determines the Cbc library of the system.
IMPORTED Targets
^^^^^^^^^^^^^^^^
This module defines :prop_tgt:`IMPORTED` target ``Coin::Cbc`` and ``Coin::OsiCbc``, if
Cbc has been found.
Result Variables
^^^^^^^^^^^^^^^^
This module defines the following variables:
::
Cbc_FOUND - True if Cbc found.
OsiCbc_FOUND - True if Osi-Cbc found.
#]=======================================================================]
include(FindPackageHandleStandardArgs)
if(NOT Cbc_NO_Cbc_CMAKE)
# do a find package call to specifically look for the CMake version
# of Cbc
find_package(Cbc QUIET NO_MODULE)
# if we found the Cbc cmake package then we are done, and
# can print what we found and return.
if(Cbc_FOUND)
find_package_handle_standard_args(Cbc CONFIG_MODE)
return()
endif()
endif()
find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(Cbc QUIET cbc IMPORTED_TARGET GLOBAL)
if(Cbc_FOUND)
add_library(Coin::Cbc ALIAS PkgConfig::Cbc)
add_library(Coin::CbcSolver ALIAS PkgConfig::Cbc)
endif()
pkg_check_modules(OsiCbc QUIET osi-cbc IMPORTED_TARGET GLOBAL)
if(OsiCbc_FOUND)
add_library(Coin::OsiCbc ALIAS PkgConfig::OsiCbc)
endif()
endif()