From 97234a352c388e6ea045af38023274a77dda22d1 Mon Sep 17 00:00:00 2001 From: FoolHen Date: Wed, 10 Jun 2026 17:12:51 +0200 Subject: [PATCH] Remove disable tests flag from Arch instructions in docs --- docs/BuildPrerequisites.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/BuildPrerequisites.md b/docs/BuildPrerequisites.md index dcee52f..3c13848 100644 --- a/docs/BuildPrerequisites.md +++ b/docs/BuildPrerequisites.md @@ -38,12 +38,11 @@ Arch: There is one AUR package: sudo paru -S authbind -Note: in Arch, tests and copyright notices won't work, so they need to be disabled with cmake arguments. Add this to your .vscode/settings.json file: +Note: in Arch, copyright notices generation won't work, so it needs to be disabled with a cmake argument. Add this to your .vscode/settings.json file: ```json { - "cmake.configureSettings": { - "PIPEDAL_EXCLUDE_TESTS": "ON", + "cmake.configureSettings": { "PIPEDAL_DISABLE_COPYRIGHT_BUILD": "ON" }, ...