summaryrefslogtreecommitdiffstats
path: root/cmake/Modules/FindSvrcore.cmake
blob: cfb073301f60ce123808f9675a296c2b9fc80ece (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
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
# - Try to find Svrcore
# Once done this will define
#
#  SVRCORE_FOUND - system has Svrcore
#  SVRCORE_INCLUDE_DIRS - the Svrcore include directory
#  SVRCORE_LIBRARIES - Link these to use Svrcore
#  SVRCORE_DEFINITIONS - Compiler switches required for using Svrcore
#
#  Copyright (c) 2010 Matthew Harmsen <mharmsen@redhat.com>
#
#  Redistribution and use is allowed according to the terms of the New
#  BSD license.
#  For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#


if (SVRCORE_LIBRARIES AND SVRCORE_INCLUDE_DIRS)
  # in cache already
  set(SVRCORE_FOUND TRUE)
else (SVRCORE_LIBRARIES AND SVRCORE_INCLUDE_DIRS)
  find_package(PkgConfig)
  if (PKG_CONFIG_FOUND)
    pkg_check_modules(_SVRCORE svrcore)
  endif (PKG_CONFIG_FOUND)

  find_path(SVRCORE_INCLUDE_DIR
    NAMES
      svrcore.h
    PATHS
      ${_SVRCORE_INCLUDEDIR}
      /usr/include
      /usr/local/include
      /opt/local/include
      /sw/include
    PATH_SUFFIXES
      svrcore
  )

  find_library(SVRCORE_LIBRARY
    NAMES
      svrcore
    PATHS
      ${_SVRCORE_LIBDIR}
      /usr/lib
      /usr/local/lib
      /opt/local/lib
      /sw/lib
  )

  set(SVRCORE_INCLUDE_DIRS
    ${SVRCORE_INCLUDE_DIR}
  )

  if (SVRCORE_LIBRARY)
    set(SVRCORE_LIBRARIES
        ${SVRCORE_LIBRARIES}
        ${SVRCORE_LIBRARY}
    )
  endif (SVRCORE_LIBRARY)

  include(FindPackageHandleStandardArgs)
  find_package_handle_standard_args(Svrcore DEFAULT_MSG SVRCORE_LIBRARIES SVRCORE_INCLUDE_DIRS)

  # show the SVRCORE_INCLUDE_DIRS and SVRCORE_LIBRARIES variables only in the advanced view
  mark_as_advanced(SVRCORE_INCLUDE_DIRS SVRCORE_LIBRARIES)

endif (SVRCORE_LIBRARIES AND SVRCORE_INCLUDE_DIRS)