diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-07-08 13:51:39 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-07-08 13:51:39 -0700 |
commit | 63bafe76df583627286e0f20ee74206fd2f0d040 (patch) | |
tree | 42ca62f45a3a7cd309cf993ba9bf442487e0e10f /cmake/Modules | |
parent | 1c74a4bb5fb9e13323ed768d24a96169f7d0182c (diff) |
zeromq: require zmq.hpp be installed
Diffstat (limited to 'cmake/Modules')
-rw-r--r-- | cmake/Modules/FindZeroMQ.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/Modules/FindZeroMQ.cmake b/cmake/Modules/FindZeroMQ.cmake index c1155c4cc5..62a1c6b969 100644 --- a/cmake/Modules/FindZeroMQ.cmake +++ b/cmake/Modules/FindZeroMQ.cmake @@ -2,7 +2,7 @@ INCLUDE(FindPkgConfig) PKG_CHECK_MODULES(PC_ZEROMQ "libzmq") FIND_PATH(ZEROMQ_INCLUDE_DIRS - NAMES zmq.h + NAMES zmq.hpp HINTS ${PC_ZEROMQ_INCLUDE_DIR} ${CMAKE_INSTALL_PREFIX}/include PATHS |