Skip to content

Commit

Permalink
Problem: README build steps can be simpler.
Browse files Browse the repository at this point in the history
Solution: After latest fixes to cmake configuration it is not required
to pass include to libzmq. Please refer to demo/ for reference.
  • Loading branch information
kurdybacha committed Jun 4, 2018
1 parent bfb3a5d commit 29d3990
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ cpp zmq (which will also include libzmq for you).
```
#find cppzmq wrapper, installed by make of cppzmq
find_package(cppzmq)
if(cppzmq_FOUND)
include_directories(${ZeroMQ_INCLUDE_DIR} ${cppzmq_INCLUDE_DIR})
target_link_libraries(*Your Project Name* ${cppzmq_LIBRARY})
endif()
target_link_libraries(*Your Project Name* cppzmq)
```


0 comments on commit 29d3990

Please sign in to comment.