We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git clone https://github.com/google/flatbuffers.git cd flatbuffers && mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j8 install # This might require sudo.
git clone https://github.com/zeromq/libzmq.git cd libzmq && mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CURVE=OFF -DZMQ_BUILD_TESTS=OFF .. make -j8 install # This might require sudo.
Why that -DENABLE_CURVE=OFF? Have a look in here.
git clone https://github.com/zeromq/cppzmq.git cd cppzmq && mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j8 install # This might require sudo.
git clone https://github.com/IFL-CAMP/simple.git cd simple && mkdir build && cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j8 install # This might require sudo.
You can add the following option to the cmake call to also build examples and tests: -DSIMPLE_BUILD_EXAMPLES=ON -DSIMPLE_BUILD_TESTS=ON
-DSIMPLE_BUILD_EXAMPLES=ON -DSIMPLE_BUILD_TESTS=ON