mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
9deb6b023b
Newer CMake versions allow use of the LOCATION target property only for imported targets (CMP0026). Because the old package variables are only needed for backward compatibility after configuration they could be deactivated for super projects which build ZeroMQ together with other projects. Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
26 lines
706 B
CMake
26 lines
706 B
CMake
# ZeroMQ cmake module
|
|
#
|
|
# The following import targets are created
|
|
#
|
|
# ::
|
|
#
|
|
# libzmq-static
|
|
# libzmq
|
|
#
|
|
# This module sets the following variables in your project::
|
|
#
|
|
# ZeroMQ_FOUND - true if ZeroMQ found on the system
|
|
# ZeroMQ_INCLUDE_DIR - the directory containing ZeroMQ headers
|
|
# ZeroMQ_LIBRARY -
|
|
# ZeroMQ_STATIC_LIBRARY
|
|
|
|
@PACKAGE_INIT@
|
|
|
|
if(NOT TARGET libzmq AND NOT TARGET libzmq-static)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
|
|
|
|
get_target_property(@PROJECT_NAME@_INCLUDE_DIR libzmq INTERFACE_INCLUDE_DIRECTORIES)
|
|
get_target_property(@PROJECT_NAME@_LIBRARY libzmq LOCATION)
|
|
get_target_property(@PROJECT_NAME@_STATIC_LIBRARY libzmq-static LOCATION)
|
|
endif()
|