Skip to content

Commit

Permalink
Improve compile and run commands in tutorial introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
orzechow committed Nov 10, 2024
1 parent 71af8d1 commit 62330f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ You should enable the `BUILD_TESTS` option to build the unit tests as well.

```bash
cd /home/blinky/demo
mkdir -p arbitration_graphs/demo/build
cd arbitration_graphs/demo/build
mkdir build
cd build
cmake -DBUILD_TESTS=true ..
cmake --build .
cmake --build . -j9
```

You can then run the demo with
Expand All @@ -88,7 +88,7 @@ You can then run the demo with
You'll also find the individual unit executables in this directory.
To execute them all at once, run
```bash
find -executable -type f -name '*-gtest-*' -exec {} \;
cmake --build . --target test
```

We'll leave the setup of your favorite IDE up to you
Expand Down

0 comments on commit 62330f5

Please sign in to comment.