fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
569 B
21 lines
569 B
# - Find Snappy
|
|
# Find the snappy compression library and includes
|
|
#
|
|
# SNAPPY_INCLUDE_DIR - where to find snappy.h, etc.
|
|
# SNAPPY_LIBRARIES - List of libraries when using snappy.
|
|
# SNAPPY_FOUND - True if snappy found.
|
|
|
|
find_path(SNAPPY_INCLUDE_DIR
|
|
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_DIR)
|
|
|
|
mark_as_advanced(
|
|
SNAPPY_LIBRARIES
|
|
SNAPPY_INCLUDE_DIR)
|
|
|