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.
22 lines
548 B
22 lines
548 B
7 years ago
|
# - Find Bzip2
|
||
|
# Find the bzip2 compression library and includes
|
||
|
#
|
||
|
# BZIP2_INCLUDE_DIR - where to find bzlib.h, etc.
|
||
|
# BZIP2_LIBRARIES - List of libraries when using bzip2.
|
||
|
# BZIP2_FOUND - True if bzip2 found.
|
||
|
|
||
|
find_path(BZIP2_INCLUDE_DIR
|
||
|
NAMES bzlib.h
|
||
|
HINTS ${BZIP2_ROOT_DIR}/include)
|
||
|
|
||
|
find_library(BZIP2_LIBRARIES
|
||
|
NAMES bz2
|
||
|
HINTS ${BZIP2_ROOT_DIR}/lib)
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(bzip2 DEFAULT_MSG BZIP2_LIBRARIES BZIP2_INCLUDE_DIR)
|
||
|
|
||
|
mark_as_advanced(
|
||
|
BZIP2_LIBRARIES
|
||
|
BZIP2_INCLUDE_DIR)
|