File tree 1 file changed +19
-17
lines changed
1 file changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -163,25 +163,27 @@ Build instructions
163
163
Build steps:
164
164
165
165
1 . Build [ libzmq] ( https://github.com/zeromq/libzmq ) via cmake. This does an out of source build and installs the build files
166
- - download and unzip the lib, cd to directory
167
- - mkdir build
168
- - cd build
169
- - cmake ..
170
- - sudo make -j4 install
166
+ - ` git clone https://github.com/zeromq/libzmq.git `
167
+ - ` cd libzmq `
168
+ - ` mkdir build `
169
+ - ` cd build `
170
+ - ` cmake .. `
171
+ - ` sudo make -j4 install `
171
172
172
173
2 . Build cppzmq via cmake. This does an out of source build and installs the build files
173
- - download and unzip the lib, cd to directory
174
- - mkdir build
175
- - cd build
176
- - cmake ..
177
- - sudo make -j4 install
178
-
179
- 3 . Build cppzmq via [ vcpkg] ( https://github.com/Microsoft/vcpkg/ ) . This does an out of source build and installs the build files
180
- - git clone https://github.com/Microsoft/vcpkg.git
181
- - cd vcpkg
182
- - ./bootstrap-vcpkg.sh # bootstrap-vcpkg.bat for Powershell
183
- - ./vcpkg integrate install
184
- - ./vcpkg install cppzmq
174
+ - ` git clone https://github.com/zeromq/cppzmq.git `
175
+ - ` cd cppzmq `
176
+ - ` mkdir build `
177
+ - ` cd build `
178
+ - ` cmake .. ` or ` cmake -DCPPZMQ_BUILD_TESTS=OFF .. ` to skip building tests
179
+ - ` sudo make -j4 install `
180
+
181
+ 3 . Alternatively, build cppzmq via [ vcpkg] ( https://github.com/Microsoft/vcpkg/ ) . This does an out of source build and installs the build files
182
+ - ` git clone https://github.com/Microsoft/vcpkg.git `
183
+ - ` cd vcpkg `
184
+ - ` ./bootstrap-vcpkg.sh ` (bootstrap-vcpkg.bat for Powershell)
185
+ - ` ./vcpkg integrate install `
186
+ - ` ./vcpkg install cppzmq `
185
187
186
188
Using this:
187
189
You can’t perform that action at this time.
0 commit comments