# cppzmq cmake module # This module sets the following variables in your project:: # # cppzmq_FOUND - true if cppzmq found on the system # cppzmq_INCLUDE_DIR - the directory containing cppzmq headers # cppzmq_LIBRARY - the ZeroMQ library for dynamic linking # cppzmq_STATIC_LIBRARY - the ZeroMQ library for static linking @PACKAGE_INIT@ set(PN cppzmq) set_and_check(${PN}_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/@CMAKE_INSTALL_INCLUDEDIR@") set_and_check(${PN}_LIBRARY "@ZeroMQ_LIBRARY@") set_and_check(${PN}_STATIC_LIBRARY "@ZeroMQ_STATIC_LIBRARY@") check_required_components(${PN})