Skip to content

Commit 29d3990

Browse files
committed
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.
1 parent bfb3a5d commit 29d3990

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,7 @@ cpp zmq (which will also include libzmq for you).
7171
```
7272
#find cppzmq wrapper, installed by make of cppzmq
7373
find_package(cppzmq)
74-
if(cppzmq_FOUND)
75-
include_directories(${ZeroMQ_INCLUDE_DIR} ${cppzmq_INCLUDE_DIR})
76-
target_link_libraries(*Your Project Name* ${cppzmq_LIBRARY})
77-
endif()
74+
target_link_libraries(*Your Project Name* cppzmq)
7875
```
7976

8077

0 commit comments

Comments
 (0)