File: FindOpenDbx.cmake

package info (click to toggle)
openscap 1.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 125,040 kB
  • sloc: xml: 527,109; ansic: 91,390; sh: 19,789; python: 2,515; perl: 444; makefile: 49
file content (29 lines) | stat: -rw-r--r-- 863 bytes parent folder | download | duplicates (3)
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
# - Try to find the OpenDbx development libraries
# Once done this will define
#
#  OPENDBX_FOUND - system has opendbx-devel
#  OPENDBX_INCLUDE_DIR - opendbx include directory
#  OPENDBX_LIBRARIES - opendbx (if found) library

include(LibFindMacros)

# Use pkg-config to get hints about paths
libfind_pkg_check_modules(OPENDBX_PKGCONF opendbx)

# Include dir
find_path(OPENDBX_INCLUDE_DIR
	NAMES opendbx/api.h
	PATHS ${OPENDBX_PKGCONF_INCLUDE_DIRS}
)

# Finally the library itself
find_library(OPENDBX_LIBRARY
	NAMES opendbx
	PATHS ${OPENDBX_PKGCONF_LIBRARY_DIRS}
)

# Set the include dir variables and the libraries and let libfind_process do the rest.
# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
set(OPENDBX_PROCESS_INCLUDES OPENDBX_INCLUDE_DIR)
set(OPENDBX_PROCESS_LIBS OPENDBX_LIBRARY)
libfind_process(OPENDBX)