mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-13 10:52:57 +01:00
commit
178a910ae1
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# Vim tmp files
|
||||
*.swp
|
||||
|
||||
# Build directory
|
||||
build/
|
31
CMakeLists.txt
Normal file
31
CMakeLists.txt
Normal file
@ -0,0 +1,31 @@
|
||||
cmake_minimum_required(VERSION 2.8.12)
|
||||
project(cppzmq)
|
||||
|
||||
find_package(ZeroMQ REQUIRED)
|
||||
|
||||
set (${PROJECT_NAME}_VERSION ${ZeroMQ_VERSION})
|
||||
message(STATUS "cppzmq v${${PROJECT_NAME}_VERSION}")
|
||||
|
||||
set(CPPZMQ_HEADERS
|
||||
zmq.hpp
|
||||
zmq_addon.hpp
|
||||
)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
include(CMakePackageConfigHelpers)
|
||||
|
||||
install(FILES ${CPPZMQ_HEADERS}
|
||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
||||
|
||||
# GNUInstallDirs "DATADIR" wrong here; CMake search path wants "share".
|
||||
set(CPPZMQ_CMAKECONFIG_INSTALL_DIR "share/cmake/${PROJECT_NAME}" CACHE STRING "install path for cppzmqConfig.cmake")
|
||||
|
||||
configure_package_config_file(${PROJECT_NAME}Config.cmake.in
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake"
|
||||
INSTALL_DESTINATION ${CPPZMQ_CMAKECONFIG_INSTALL_DIR})
|
||||
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
|
||||
VERSION ${${PROJECT_NAME}_VERSION}
|
||||
COMPATIBILITY AnyNewerVersion)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake
|
||||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
|
||||
DESTINATION ${CPPZMQ_CMAKECONFIG_INSTALL_DIR})
|
15
cppzmqConfig.cmake.in
Normal file
15
cppzmqConfig.cmake.in
Normal file
@ -0,0 +1,15 @@
|
||||
# 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})
|
Loading…
Reference in New Issue
Block a user