From cf4eabc8c29c6657bd5f2073c7388a1a2ab65a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8ger=20Hanseg=C3=A5rd?= Date: Thu, 1 Jun 2023 17:22:16 +0200 Subject: [PATCH] Add CMakeUserPresets.json to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CMakeUserPresets.json file can be used to simplify configuring Qt, particularly with tools such as Visual Studio and Visual Studio Code. As opposed to the CMakePresets.json, the CMakeUserPresets.json should only contain user specific configurations, and should never be checked into source code management system. Therefore it makes sense to ignore it globally. Pick-to: 6.5 6.6 Change-Id: I971d4505b302dc40e3dd33b6d4680c2067047c27 Reviewed-by: Tor Arne Vestbø --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9b8015da..ad1800be 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ Makefile .qmake.cache .qmake.super *.pro.user* +CMakeUserPresets.json