From 28af802e9cc63404c2a3906837aee9940db1b860 Mon Sep 17 00:00:00 2001 From: magdev Date: Sun, 3 May 2026 22:29:49 +0200 Subject: [PATCH] gitignore: ignore framework/qml/build-tests/ The make qmltest target writes its CMake build tree to build-tests/ (deliberately distinct from the regular build/ tree so a configured-with -DBUILD_TESTING=ON tree doesn't shadow production builds). The existing build/ patterns don't match it, so it kept showing up as untracked. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 227b52e..69b7ccd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Build artefacts build/ **/build/ +build-tests/ +**/build-tests/ # Composer vendor/