-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathFindZMQ.cmake
More file actions
66 lines (56 loc) · 1.43 KB
/
FindZMQ.cmake
File metadata and controls
66 lines (56 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# - Try to find ZMQ
# Once done this will define
#
# ZMQ_FOUND - system has ZMQ
# ZMQ_INCLUDE_DIRS - the ZMQ include directory
# ZMQ_LIBRARIES - Link these to use ZMQ
# ZMQ_DEFINITIONS - Compiler switches required for using ZMQ
#
# Copyright (c) 2011 Lee Hambley <lee.hambley@gmail.com>
#
# Redistribution and use is allowed according to the terms of the New
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
find_package(ZeroMQ CONFIG REQUIRED)
if(TARGET libzmq)
add_library(zmq ALIAS libzmq)
set(ZMQ_FOUND TRUE)
return()
endif()
if (ZMQ_LIBRARIES AND ZMQ_INCLUDE_DIRS)
# in cache already
set(ZMQ_FOUND TRUE)
else (ZMQ_LIBRARIES AND ZMQ_INCLUDE_DIRS)
find_path(ZMQ_INCLUDE_DIR
NAMES
zmq.h
PATHS
/usr/include
/usr/local/include
/opt/local/include
/sw/include
)
find_library(ZMQ_LIBRARY
NAMES
zmq
PATHS
/usr/lib
/usr/local/lib
/opt/local/lib
/sw/lib
)
set(ZMQ_INCLUDE_DIRS
${ZMQ_INCLUDE_DIR}
)
if (ZMQ_LIBRARY)
set(ZMQ_LIBRARIES
${ZMQ_LIBRARIES}
${ZMQ_LIBRARY}
)
endif (ZMQ_LIBRARY)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(ZMQ DEFAULT_MSG ZMQ_LIBRARIES ZMQ_INCLUDE_DIRS)
# show the ZMQ_INCLUDE_DIRS and ZMQ_LIBRARIES variables only in the advanced view
mark_as_advanced(ZMQ_INCLUDE_DIRS ZMQ_LIBRARIES)
endif (ZMQ_LIBRARIES AND ZMQ_INCLUDE_DIRS)