From c17c2e3808e374e88ac0fac5f7c774ab78c3bd91 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 30 Dec 2025 18:41:33 +0100 Subject: Clean up .gitignore files Since FLTK 1.5 building FLTK in the source tree is prohibited by our CMake setup. Therefore all build artifacts are stored in the build tree and don't need to be "ignored" in the source tree. This simplifies the .gitignore files significantly. There are some exceptions though, for instance .cxx and .h files generated by fluid which might be created by a user/developer executing fluid in the source tree. --- .gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index dd99c69f8..694bbedec 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ *.log *.o **/.DS_Store +TAGS # CMake build artifacts if built in source - forbidden since FLTK 1.5.0. # However, the following artifacts would be created by an attempt to @@ -18,15 +19,14 @@ **/CMakeCache.txt **/CMakeFiles/ -# VS Code (Visual Studio Code) Editor is a user generated folder -# that must not be committed +# VS Code (Visual Studio Code) Editor is a frequently used editor whose +# configuration is stored in '.vscode' folders .vscode/ -# default build folder `build` and more ... +# default build folder `build` and some more special files ... /build -/TAGS # /FL - this should not happen, but anyway ... -- cgit v1.2.3