forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFindClp.cmake
51 lines (39 loc) · 1.29 KB
/
FindClp.cmake
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
#[=======================================================================[.rst:
FindClp
--------
This module determines the Clp library of the system.
IMPORTED Targets
^^^^^^^^^^^^^^^^
This module defines :prop_tgt:`IMPORTED` target ``Coin::Clp`` and ``Coin::OsiClp``, if
Clp has been found.
Result Variables
^^^^^^^^^^^^^^^^
This module defines the following variables:
::
Clp_FOUND - True if Clp found.
OsiClp_FOUND - True if Osi-Clp found.
#]=======================================================================]
include(FindPackageHandleStandardArgs)
if(NOT Clp_NO_Clp_CMAKE)
# do a find package call to specifically look for the CMake version
# of Clp
find_package(Clp QUIET NO_MODULE)
# if we found the Clp cmake package then we are done, and
# can print what we found and return.
if(Clp_FOUND)
find_package_handle_standard_args(Clp CONFIG_MODE)
return()
endif()
endif()
find_package(PkgConfig QUIET)
if(PKG_CONFIG_FOUND)
pkg_check_modules(Clp QUIET cbc IMPORTED_TARGET GLOBAL)
if(Clp_FOUND)
add_library(Coin::Clp ALIAS PkgConfig::Clp)
add_library(Coin::ClpSolver ALIAS PkgConfig::Clp)
endif()
pkg_check_modules(OsiClp QUIET osi-cbc IMPORTED_TARGET GLOBAL)
if(OsiClp_FOUND)
add_library(Coin::OsiClp ALIAS PkgConfig::OsiClp)
endif()
endif()