summaryrefslogtreecommitdiff
path: root/cmake/FindCLN.cmake
blob: aeb84dceaca8f68c7108091c12d0f2acb0a97c0e (plain)
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
#####################
## FindCLN.cmake
## Top contributors (to current version):
##   Mathias Preiner
## This file is part of the CVC4 project.
## Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
## in the top-level source directory and their institutional affiliations.
## All rights reserved.  See the file COPYING in the top-level source
## directory for licensing information.
##
# Find CLN
# CLN_FOUND - system has CLN lib
# CLN_INCLUDE_DIR - the CLN include directory
# CLN_LIBRARIES - Libraries needed to use CLN

find_path(CLN_INCLUDE_DIR NAMES cln/cln.h)
find_library(CLN_LIBRARIES NAMES cln)


if(CLN_INCLUDE_DIR)
  file(STRINGS
        "${CLN_INCLUDE_DIR}/cln/version.h" version_info
        REGEX "^#define[ \t]+CL_VERSION_.*")
  string(REGEX REPLACE
         "^.*_MAJOR[ \t]+([0-9]+).*" "\\1" version_major "${version_info}")
  string(REGEX REPLACE
         "^.*_MINOR[ \t]+([0-9]+).*" "\\1" version_minor "${version_info}")
  string(REGEX REPLACE
         "^.*_PATCHLEVEL[ \t]+([0-9]+).*" "\\1" version_patch "${version_info}")
  set(CLN_VERSION ${version_major}.${version_minor}.${version_patch})

  include(FindPackageHandleStandardArgs)
  find_package_handle_standard_args(CLN
    REQUIRED_VARS CLN_INCLUDE_DIR CLN_LIBRARIES
    VERSION_VAR CLN_VERSION)
  mark_as_advanced(CLN_INCLUDE_DIR CLN_LIBRARIES)
endif()
if(CLN_LIBRARIES)
  message(STATUS "Found CLN libs: ${CLN_LIBRARIES}")
endif()
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback