Skip to content
Snippets Groups Projects
Commit 4b25a4e4 authored by Steven Murray's avatar Steven Murray
Browse files

cmake rules now simply look for zeromq as opposed to zeromq3

parent b5931542
No related branches found
No related tags found
No related merge requests found
......@@ -15,14 +15,14 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# This module will set the following variables:
# ZEROMQ3_FOUND
# ZEROMQ3_INCLUDE_DIRS
# ZEROMQ_FOUND
# ZEROMQ_INCLUDE_DIRS
find_path (ZEROMQ3_INCLUDE_DIRS
find_path (ZEROMQ_INCLUDE_DIRS
zmq.h
PATHS /usr/include
NO_DEFAULT_PATH)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(zeromq3 DEFAULT_MSG
ZEROMQ3_INCLUDE_DIRS)
find_package_handle_standard_args(zeromq DEFAULT_MSG
ZEROMQ_INCLUDE_DIRS)
......@@ -22,7 +22,7 @@ include_directories(${PROJECT_BINARY_DIR}/tapeserver)
find_package(openssl REQUIRED)
find_package(Protobuf REQUIRED)
find_package(zeromq3 REQUIRED)
find_package(zeromq REQUIRED)
file(GLOB ProtoFiles "${CMAKE_CURRENT_SOURCE_DIR}/*.proto")
PROTOBUF_GENERATE_CPP(ProtoSources ProtoHeaders ${ProtoFiles})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment