From d439879ef42310586c0fb13f93e6ab4adba502e9 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Tue, 18 Jun 2024 09:57:14 +0100 Subject: [PATCH] Use newer CMake configure and build method --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cedf0179..f0318ea7 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,8 @@ For popular distributions, I've included commands below. To build this project, run: ```bash -mkdir build -cd build -cmake -DCMAKE_BUILD_TYPE=Release .. -make +cmake -B build -DCMAKE_BUILD_TYPE=Release +cmake --build build ``` To install, run `sudo make install` after building. You can set the daemon to start at boot by running `sudo systemctl enable logid` or `sudo systemctl enable --now logid` if you want to enable and start the daemon.