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.
29 lines
837 B
29 lines
837 B
# - 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()
|
|
|