From 6232f719a5ebda230db9fcd23e75c0f41e8ec134 Mon Sep 17 00:00:00 2001 From: kimci86 Date: Mon, 14 Aug 2023 21:09:52 +0200 Subject: [PATCH] Add CMakeUserPresets to .gitignore Now that we use a CMakePresets.json file for CI, it makes sense to support users having their own presets in a CMakeUserPresets.json file. From CMake documentation: > CMakePresets.json may be checked into a version control system, and > CMakeUserPresets.json should NOT be checked in. For example, if a > project is using Git, CMakePresets.json may be tracked, and > CMakeUserPresets.json should be added to the .gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index f0cfe172..223492a8 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,6 @@ cmake-build-*/ .vscode/ .idea/ .vs/ + +# User configuration +CMakeUserPresets.json