From 8a4bc5aad3421b0822d8a4256e3147664eafd305 Mon Sep 17 00:00:00 2001 From: Nick Le Large Date: Fri, 29 Nov 2024 10:25:40 +0100 Subject: [PATCH] Small rewording in build-from-source section --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index aa087b8..841a681 100644 --- a/README.md +++ b/README.md @@ -142,10 +142,8 @@ find_package(util_caching REQUIRED)
Building from source using CMake -First make sure all dependencies are installed: -- [Googletest](https://github.com/google/googletest) (only if you want to build unit tests) - -See also the [`Dockerfile`](./Dockerfile) for how to install these packages under Debian or Ubuntu. +If you want to also build the unit tests (see the Development section of this README for detailed instructions), make sure to have [Googletest](https://github.com/google/googletest) installed. +See also the [`Dockerfile`](./Dockerfile) for how to install this package under Debian or Ubuntu. Compile and install the project with CMake: @@ -165,8 +163,7 @@ sudo cmake --install .
Using Docker image -Follow the steps above to setup the Docker image. -Then, run the development image. +To start a development container, run: ```bash docker compose run --rm --build util_caching_devel