Skip to content

Commit

Permalink
better target instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
agl-alexglopez committed Nov 22, 2024
1 parent dfc57d9 commit ba4ce86
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,15 @@ Now that tooling is set up, the workflow is roughly as follows.
- `cmake --preset=[PRESET HERE] && cmake --build build -j[NUM THREADS] --target ccc`
- `tests` - The tests.
- `cmake --preset=[PRESET HERE] && cmake --build build -j[NUM THREADS] --target tests`
- `make tests` to build.
- `make dtest` to run in debug build.
- `make rtest` to run in release build.
- `./build/debug/bin/tests/[TEST_FILE_NAME]` to run a specific container test in debug mode.
- `./build/bin/tests/[TEST_FILE_NAME]` to run a specific container test in release mode.
- `samples` - The samples.
- `cmake --preset=[PRESET HERE] && cmake --build build -j[NUM THREADS] --target samples`
- `./build/debug/bin/[SAMPLE_NAME]` to run a sample in debug mode.
- `./build/bin/[SAMPLE_NAME]` to run a sample in release mode.

## Style

Expand Down

0 comments on commit ba4ce86

Please sign in to comment.