mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 18:55:11 +01:00
16 lines
581 B
CMake
16 lines
581 B
CMake
# 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})
|