File: FindSnappy.cmake

package info (click to toggle)
rocksdb 9.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 46,088 kB
  • sloc: cpp: 500,771; java: 42,992; ansic: 9,789; python: 8,373; perl: 5,822; sh: 4,921; makefile: 2,386; asm: 550; xml: 342
file content (29 lines) | stat: -rw-r--r-- 837 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 Snappy
# Find the snappy compression library and includes
#
# Snappy_INCLUDE_DIRS - where to find snappy.h, etc.
# Snappy_LIBRARIES - List of libraries when using snappy.
# Snappy_FOUND - True if snappy found.

find_path(Snappy_INCLUDE_DIRS
  NAMES snappy.h
  HINTS ${snappy_ROOT_DIR}/include)

find_library(Snappy_LIBRARIES
  NAMES snappy
  HINTS ${snappy_ROOT_DIR}/lib)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Snappy DEFAULT_MSG Snappy_LIBRARIES Snappy_INCLUDE_DIRS)

mark_as_advanced(
  Snappy_LIBRARIES
  Snappy_INCLUDE_DIRS)

if(Snappy_FOUND AND NOT (TARGET Snappy::snappy))
  add_library (Snappy::snappy UNKNOWN IMPORTED)
  set_target_properties(Snappy::snappy
    PROPERTIES
      IMPORTED_LOCATION ${Snappy_LIBRARIES}
      INTERFACE_INCLUDE_DIRECTORIES ${Snappy_INCLUDE_DIRS})
endif()