swh:1:snp:597f10704966a63e22a6690fc91719ea5d363ec6
Tip revision: 35742ac3ab1ae42cf2bbe8761fd7c8e630a638c4 authored by JoshWolper on 28 October 2020, 15:53:00 UTC
Add files via upload
Add files via upload
Tip revision: 35742ac
FindZeroMQPP.cmake
# - Try to find libzmqpp
# Once done, this will define
#
# ZEROMQPP_FOUND - system has libzmqpp
# ZEROMQPP_INCLUDE_DIRS - the libzmqpp include directories
# ZEROMQPP_LIBRARIES - link these to use libzmqpp
find_path(ZEROMQPP_ROOT_DIR
NAMES include/zmqpp/zmqpp.hpp
)
find_library(ZEROMQPP_LIBRARIES
NAMES zmqpp libzmqpp
HINTS ${ZEROMQPP_ROOT_DIR}/lib
)
find_path(ZEROMQPP_INCLUDE_DIRS
NAMES zmqpp/zmqpp.hpp
HINTS ${ZEROMQPP_ROOT_DIR}/include
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(ZEROMQPP DEFAULT_MSG
ZEROMQPP_LIBRARIES
ZEROMQPP_INCLUDE_DIRS
)
mark_as_advanced(
ZEROMQPP_ROOT_DIR
ZEROMQPP_LIBRARIES
ZEROMQPP_INCLUDE_DIRS
)