To build the examples you can use the cmake configuration which is provided
in iceoryx_meta
.
cmake -Bbuild -Hiceoryx_meta -Dexamples=ON # by default the examples are always build
cd build
make
To run an example switch into the iceoryx_examples
directory which can be
found in our build directory. Then select your example and follow the instructions
from the examples readme.
cd build/iceoryx_examples/
cd someExample
./runExampleCode
example | description |
---|---|
icecrystal | Demostrates the usage of the iceoryx introspection client. |
icedelivery | You are new to iceoryx then take a look at this example which demonstrates the basics of iceoryx by sending data from one process to another process. |
iceperf | A benchmark application which measures the latency of an IPC transmission between two applications. |
singleprocess | Iceoryx can also be used for inter thread communication when you would like to run everything in a single process. |