forked from SimonKagstrom/kcov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindLibCRPCUT.cmake
59 lines (50 loc) · 1.49 KB
/
FindLibCRPCUT.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
52
53
54
55
56
57
58
59
# - Try to find libcrpcut
# Once done this will define
#
# LIBCRPCUT_FOUND - system has libcrpcut
# LIBCRPCUT_INCLUDE_DIRS - the libcrpcut include directory
# LIBCRPCUT_LIBRARIES - Link these to use libcrpcut
# LIBCRPCUT_DEFINITIONS - Compiler switches required for using libcrpcut
#
# Based on:
#
# Copyright (c) 2008 Bernhard Walle <[email protected]>
#
# Redistribution and use is allowed according to the terms of the New
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
if (LIBCRPCUT_LIBRARIES AND LIBCRPCUT_INCLUDE_DIRS)
set (LibCRPCUT_FIND_QUIETLY ON)
endif (LIBCRPCUT_LIBRARIES AND LIBCRPCUT_INCLUDE_DIRS)
find_path (LIBCRPCUT_INCLUDE_DIRS
NAMES
crpcut.hpp
PATHS
/usr/include
/usr/include/crpcut
/usr/local/include
/usr/local/include/crpcut
/opt/local/include
/opt/local/include/crpcut
/home/ska/local/include
ENV CPATH)
find_library (LIBCRPCUT_LIBRARIES
NAMES
crpcut
PATHS
/usr/lib
/usr/lib64
/usr/local/lib
/usr/local/lib64
/opt/local/lib
/opt/usr/lib64
/home/ska/local/lib
ENV LIBRARY_PATH
ENV LD_LIBRARY_PATH)
include (FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set LIBCRPCUT_FOUND to TRUE if all listed variables are TRUE
find_package_handle_standard_args(LibCRPCUT DEFAULT_MSG
LIBCRPCUT_LIBRARIES
LIBCRPCUT_INCLUDE_DIRS)
mark_as_advanced(LIBCRPCUT_INCLUDE_DIRS LIBCRPCUT_LIBRARIES)