We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0366653 commit b38bc32Copy full SHA for b38bc32
2 files changed
Build.bash
@@ -29,7 +29,7 @@ set -e
29
if [[ "${1:-}" == "-h" || "${1:-}" == "--help" ]]; then
30
echo "Usage: $0 [preset]"
31
echo "Build libRSF using a CMake preset (default: release)."
32
- echo "Available presets: release, debug, ci"
+ echo "Available presets: release, debug, test"
33
exit 0
34
fi
35
README.md
@@ -91,9 +91,9 @@ The library and its applications can be built with CMake presets:
91
To build and run tests:
92
93
```bash
94
- cmake --preset ci
95
- cmake --build --preset ci
96
- ctest --preset ci
+ cmake --preset test
+ cmake --build --preset test
+ ctest --preset test
97
```
98
99
You can install the libRSF using:
0 commit comments