Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Feb 22, 2024
1 parent 89cd412 commit a7ac0a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
export CPATH=$LIBRARY_PATH:/usr/local/include
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib
fi
cmake --build build/unit_tests --target unit_tests
cmake --build build/unit_tests
- name: Run unit tests
run: ctest --test-dir build/unit_tests
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ Next, build the **staq** system by executing
cmake --build build --parallel 8
```

The `--parallel 8` instructs CMake to build in parallel using 8 threads, modify
accordingly.
The `--parallel 8` flag instructs CMake to build in parallel using 8 threads,
modify accordingly.

To build only the **staq** tool suite, execute

Expand All @@ -75,7 +75,7 @@ cmake --build build --target staq --parallel 8
Unit tests can be built with the command

```shell
cmake --build build --target unit_tests --parallel 8
cmake --build build/unit_tests --parallel 8
```

and run with
Expand Down

0 comments on commit a7ac0a7

Please sign in to comment.