Problem: README build steps can be simpler.

Solution: After latest fixes to cmake configuration it is not required
to pass include to libzmq. Please refer to demo/ for reference.
This commit is contained in:
Pawel Kurdybacha 2018-06-04 16:46:41 +01:00
parent bfb3a5d6f7
commit 29d3990770

View File

@ -71,10 +71,7 @@ cpp zmq (which will also include libzmq for you).
``` ```
#find cppzmq wrapper, installed by make of cppzmq #find cppzmq wrapper, installed by make of cppzmq
find_package(cppzmq) find_package(cppzmq)
if(cppzmq_FOUND) target_link_libraries(*Your Project Name* cppzmq)
include_directories(${ZeroMQ_INCLUDE_DIR} ${cppzmq_INCLUDE_DIR})
target_link_libraries(*Your Project Name* ${cppzmq_LIBRARY})
endif()
``` ```