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.
This commit is contained in:
kimci86 2023-08-14 21:09:52 +02:00 committed by Chris Thrasher
parent 10bd1ffeba
commit 6232f719a5

3
.gitignore vendored
View File

@ -40,3 +40,6 @@ cmake-build-*/
.vscode/
.idea/
.vs/
# User configuration
CMakeUserPresets.json