diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-12-30 18:41:33 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-12-30 18:41:33 +0100 |
| commit | c17c2e3808e374e88ac0fac5f7c774ab78c3bd91 (patch) | |
| tree | acc433ab3d388f6a8ae7784018202a05ab73a68d /.gitignore | |
| parent | 30a3054202d170830453fe9a00f37b2b4b45bc5c (diff) | |
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.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
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 ... |
