1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# Examples
These examples demonstrate various Ignition Common features.
## Build
After installing Ignition Common, from source or from binaries, build with:
```
git clone https://github.com/ignitionrobotics/ign-common/
cd ign-common/examples
mkdir build
cd build
cmake ..
```
### Ubuntu and MacOS
```bash
make
```
### Windows
```bash
cmake --build . --config Release
```
## Run
One executable is created inside the `build` folder for each example.
You can run each executable from the build folder with `./executablename`. For example:
### Ubuntu and MacOS
`./events_example`
### Windows
`.\Release\events_example.exe`
|