-
Notifications
You must be signed in to change notification settings - Fork 5
install: linux
Salvo Virga edited this page Jun 17, 2019
·
7 revisions
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