From 5546f2df538c06f5e7cc3e218f03a9a0ef2d830e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8ger=20Hanseg=C3=A5rd?= Date: Tue, 13 Jun 2023 09:08:15 +0200 Subject: [PATCH] Add CMakeUserPresets.json to .gitignore 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. This file is already ignored in the top level Qt super-project, but to facilitate working with each individual submodule, we should also have this .gitignore in each submodule. Pick-to: 6.5 6.6 Change-Id: I383417c7fe9d803aeb0385ba83e8c9cee6181602 Reviewed-by: Miguel Costa --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 69471e37ee..07c4a12149 100644 --- a/.gitignore +++ b/.gitignore @@ -333,3 +333,4 @@ CTestTestfile.cmake cmake_install.cmake *_autogen tst_*.xml +CMakeUserPresets.json