mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-28 05:43:50 +00:00
cc9fa7fcdb
Summary: - cmake: use the builtin FindBzip2.cmake from CMake - cmake: require CMake v3.5.1 - cmake: add imported target for 3rd party libraries - cmake: extract ReadVersion.cmake out and refactor it Pull Request resolved: https://github.com/facebook/rocksdb/pull/5662 Differential Revision: D16660974 Pulled By: maysamyabandeh fbshipit-source-id: 681594910e74253251fe14ad0befc41a4d0f4fd4
30 lines
837 B
CMake
30 lines
837 B
CMake
# - 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()
|