File: LibFindMacros.cmake

package info (click to toggle)
mysql-8.0 8.0.43-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,904 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,184; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,196; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (120 lines) | stat: -rw-r--r-- 5,395 bytes parent folder | download | duplicates (4)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#    Fetched from https://github.com/JonathanSalwan/Triton/blob/master/CMakeModules/LibFindMacros.cmake
#
#    Copyright:
#
#    * Jonathan Salwan (Quarkslab)
#    * Pierrick Brunet (Quarkslab)
#    * Romain Thomas (Quarkslab)
#    * Florent Saudel (Bordeaux University)
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#    https://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

# Works the same as find_package, but forwards the "REQUIRED" and "QUIET" arguments
# used for the current package. For this to work, the first parameter must be the
# prefix of the current package, then the prefix of the new package etc, which are
# passed to find_package.
macro (libfind_package PREFIX)
    set (LIBFIND_PACKAGE_ARGS ${ARGN})
    if (${PREFIX}_FIND_QUIETLY)
        set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} QUIET)
    endif (${PREFIX}_FIND_QUIETLY)
    if (${PREFIX}_FIND_REQUIRED)
        set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} REQUIRED)
    endif (${PREFIX}_FIND_REQUIRED)
    find_package(${LIBFIND_PACKAGE_ARGS})
endmacro (libfind_package)

# CMake developers made the UsePkgConfig system deprecated in the same release (2.6)
# where they added pkg_check_modules. Consequently I need to support both in my scripts
# to avoid those deprecated warnings. Here's a helper that does just that.
# Works identically to pkg_check_modules, except that no checks are needed prior to use.
macro (libfind_pkg_check_modules PREFIX PKGNAME)
    if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
        include(UsePkgConfig)
        pkgconfig(${PKGNAME} ${PREFIX}_INCLUDE_DIRS ${PREFIX}_LIBRARY_DIRS ${PREFIX}_LDFLAGS ${PREFIX}_CFLAGS)
    else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
        find_package(PkgConfig)
        if (PKG_CONFIG_FOUND)
            pkg_check_modules(${PREFIX} ${PKGNAME})
        endif (PKG_CONFIG_FOUND)
    endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
endmacro (libfind_pkg_check_modules)

# Do the final processing once the paths have been detected.
# If include dirs are needed, ${PREFIX}_PROCESS_INCLUDES should be set to contain
# all the variables, each of which contain one include directory.
# Ditto for ${PREFIX}_PROCESS_LIBS and library files.
# Will set ${PREFIX}_FOUND, ${PREFIX}_INCLUDE_DIRS and ${PREFIX}_LIBRARIES.
# Also handles errors in case library detection was required, etc.
macro (libfind_process PREFIX)
    # Skip processing if already processed during this run
    if (NOT ${PREFIX}_FOUND)
        # Start with the assumption that the library was found
        set (${PREFIX}_FOUND TRUE)

        # Process all includes and set _FOUND to false if any are missing
        foreach (i ${${PREFIX}_PROCESS_INCLUDES})
            if (${i})
                set (${PREFIX}_INCLUDE_DIRS ${${PREFIX}_INCLUDE_DIRS} ${${i}})
                mark_as_advanced(${i})
            else (${i})
                set (${PREFIX}_FOUND FALSE)
            endif (${i})
        endforeach (i)

        # Process all libraries and set _FOUND to false if any are missing
        foreach (i ${${PREFIX}_PROCESS_LIBS})
            if (${i})
                set (${PREFIX}_LIBRARIES ${${PREFIX}_LIBRARIES} ${${i}})
                mark_as_advanced(${i})
            else (${i})
                set (${PREFIX}_FOUND FALSE)
            endif (${i})
        endforeach (i)

        # Print message and/or exit on fatal error
        if (${PREFIX}_FOUND)
            if (NOT ${PREFIX}_FIND_QUIETLY)
                message (STATUS "Found ${PREFIX} include directory: ${${PREFIX}_INCLUDE_DIR}")
                message (STATUS "Found ${PREFIX} library: ${${PREFIX}_LIBRARY}")
            endif (NOT ${PREFIX}_FIND_QUIETLY)
        else (${PREFIX}_FOUND)
            if (${PREFIX}_FIND_REQUIRED)
                foreach (i ${${PREFIX}_PROCESS_INCLUDES} ${${PREFIX}_PROCESS_LIBS})
                    message("${i}=${${i}}")
                endforeach (i)
                message (FATAL_ERROR "Required library ${PREFIX} NOT FOUND.\nInstall the library (dev version) and try again. If the library is already installed, use ccmake to set the missing variables manually.")
            endif (${PREFIX}_FIND_REQUIRED)
        endif (${PREFIX}_FOUND)
    endif (NOT ${PREFIX}_FOUND)
endmacro (libfind_process)

macro(libfind_library PREFIX basename)
    set(TMP "")
    if(MSVC80)
        set(TMP -vc80)
    endif(MSVC80)
    if(MSVC90)
        set(TMP -vc90)
    endif(MSVC90)
    set(${PREFIX}_LIBNAMES ${basename}${TMP})
    if(${ARGC} GREATER 2)
        set(${PREFIX}_LIBNAMES ${basename}${TMP}-${ARGV2})
        string(REGEX REPLACE "\\." "_" TMP ${${PREFIX}_LIBNAMES})
        set(${PREFIX}_LIBNAMES ${${PREFIX}_LIBNAMES} ${TMP})
    endif(${ARGC} GREATER 2)
    find_library(${PREFIX}_LIBRARY
            NAMES ${${PREFIX}_LIBNAMES}
            PATHS ${${PREFIX}_PKGCONF_LIBRARY_DIRS}
            )
endmacro(libfind_library)