1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 20:20:35 +00:00

CI: fix formatting job

This commit is contained in:
Carles Fernandez 2022-07-16 11:19:03 +02:00
parent 6146dc3cd4
commit 21e6e138c0
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -208,6 +208,7 @@ Please check the [CMake build instructions](cmake/README.md).
### Quickstart ### Quickstart
- Run `list_cpu_features` - Run `list_cpu_features`
```sh ```sh
cmake -S. -Bbuild -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release cmake -S. -Bbuild -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release -j cmake --build build --config Release -j
@ -218,6 +219,7 @@ Please check the [CMake build instructions](cmake/README.md).
`XCode`. `XCode`.
- run tests - run tests
```sh ```sh
cmake -S. -Bbuild -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Debug cmake -S. -Bbuild -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Debug
cmake --build build --config Debug -j cmake --build build --config Debug -j
@ -228,6 +230,7 @@ Please check the [CMake build instructions](cmake/README.md).
`--target RUN_TEST` for `XCode`. `--target RUN_TEST` for `XCode`.
- install `cpu_features` - install `cpu_features`
```sh ```sh
cmake --build build --config Release --target install -v cmake --build build --config Release --target install -v
``` ```
@ -236,8 +239,8 @@ Please check the [CMake build instructions](cmake/README.md).
_Note_: When using `Makefile` or `XCode` generator, you can use _Note_: When using `Makefile` or `XCode` generator, you can use
[`DESTDIR`](https://www.gnu.org/software/make/manual/html_node/DESTDIR.html) [`DESTDIR`](https://www.gnu.org/software/make/manual/html_node/DESTDIR.html)
to install on a local repository.<br> to install on a local repository.<br> e.g.
e.g.
```sh ```sh
cmake --build build --config Release --target install -v -- DESTDIR=install cmake --build build --config Release --target install -v -- DESTDIR=install
``` ```