CodeCommitsIssuesPull requestsActionsInsightsSecurity
452a24efbb642ccbceb4d5bb7c3256312b76e043

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

cmake/Modules/Findcityhash.cmake

44lines · modepreview

# - Try to find cityhash headers and libraries.
#
# Usage of this module as follows:
#
#     find_package(cityhash)
#
# Variables used by this module, they can change the default behaviour and need
# to be set before calling find_package:
#
#  CITYHASH_ROOT_DIR Set this variable to the root installation of
#                    cityhash if the module has problems finding
#                    the proper installation path.
#
# Variables defined by this module:
#
#  CITYHASH_FOUND             System has cityhash libs/headers
#  CITYHASH_LIBRARIES         The cityhash library/libraries
#  CITYHASH_INCLUDE_DIR       The location of cityhash headers

find_path(CITYHASH_ROOT_DIR
    NAMES include/city.h
)

find_library(CITYHASH_LIBRARIES
    NAMES cityhash
    PATHS ${CITYHASH_ROOT_DIR}/lib ${CITYHASH_LIBRARIES_PATHS}
)

find_path(CITYHASH_INCLUDE_DIR
    NAMES city.h
    PATHS ${CITYHASH_ROOT_DIR}/include ${CITYHASH_INCLUDE_PATHS}
)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(cityhash DEFAULT_MSG
    CITYHASH_LIBRARIES
    CITYHASH_INCLUDE_DIR
)

mark_as_advanced(
    CITYHASH_ROOT_DIR
    CITYHASH_LIBRARIES
    CITYHASH_INCLUDE_DIR
)