From 21e6e138c0c1f0de4f86c55c67d73a3980dd5cfa Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 16 Jul 2022 11:19:03 +0200 Subject: [PATCH] CI: fix formatting job --- .../volk_gnsssdr/cpu_features/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/cpu_features/README.md b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/cpu_features/README.md index 956d90c01..ce13d72e6 100644 --- a/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/cpu_features/README.md +++ b/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/cpu_features/README.md @@ -208,6 +208,7 @@ Please check the [CMake build instructions](cmake/README.md). ### Quickstart - Run `list_cpu_features` + ```sh cmake -S. -Bbuild -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release cmake --build build --config Release -j @@ -218,6 +219,7 @@ Please check the [CMake build instructions](cmake/README.md). `XCode`. - run tests + ```sh cmake -S. -Bbuild -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Debug cmake --build build --config Debug -j @@ -228,6 +230,7 @@ Please check the [CMake build instructions](cmake/README.md). `--target RUN_TEST` for `XCode`. - install `cpu_features` + ```sh 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 [`DESTDIR`](https://www.gnu.org/software/make/manual/html_node/DESTDIR.html) - to install on a local repository.
- e.g. + to install on a local repository.
e.g. + ```sh cmake --build build --config Release --target install -v -- DESTDIR=install ```