File: Findgflags.cmake

package info (click to toggle)
rocksdb 9.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 46,252 kB
  • sloc: cpp: 503,390; java: 43,039; ansic: 9,834; python: 8,381; perl: 5,822; sh: 4,921; makefile: 2,386; asm: 550; xml: 342
file content (29 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (11)
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
# - Find gflags library
# Find the gflags includes and library
#
# GFLAGS_INCLUDE_DIR - where to find gflags.h.
# GFLAGS_LIBRARIES - List of libraries when using gflags.
# gflags_FOUND - True if gflags found.

find_path(GFLAGS_INCLUDE_DIR
  NAMES gflags/gflags.h)

find_library(GFLAGS_LIBRARIES
  NAMES gflags)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(gflags
  DEFAULT_MSG GFLAGS_LIBRARIES GFLAGS_INCLUDE_DIR)

mark_as_advanced(
  GFLAGS_LIBRARIES
  GFLAGS_INCLUDE_DIR)

if(gflags_FOUND AND NOT (TARGET gflags::gflags))
  add_library(gflags::gflags UNKNOWN IMPORTED)
  set_target_properties(gflags::gflags
    PROPERTIES
      IMPORTED_LOCATION ${GFLAGS_LIBRARIES}
      INTERFACE_INCLUDE_DIRECTORIES ${GFLAGS_INCLUDE_DIR}
      IMPORTED_LINK_INTERFACE_LANGUAGES "CXX")
endif()