diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-11-23 13:33:52 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-11-23 13:33:52 +0100 |
| commit | 410e57d2db426cb4ab3c8f4b9472ee33e17a5f99 (patch) | |
| tree | 19047da520ae66de5f552dd480f457ff063f8647 /.gitignore | |
| parent | ce777110feaaccd9d0fd16d10fa2695ecdffd33e (diff) | |
Don't build libdecor demos, add generated files to .gitignore
1) We don't need to build the libdecor demo programs for FLTK.
2) The Wayland build process generates some source and header files
in the main src/ directory. These files are now ignored by git.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 09fe156dc..c805d501a 100644 --- a/.gitignore +++ b/.gitignore @@ -83,7 +83,18 @@ etc/FLTKConfig.cmake /src/*.sav /src/*.dylib -# /test/ -# see test/.gitignore +# Wayland build artifacts (generated files) + +src/text-input-client-protocol.h +src/text-input-protocol.c +src/xdg-decoration-client-protocol.h +src/xdg-decoration-protocol.c +src/xdg-shell-client-protocol.h +src/xdg-shell-protocol.c + +# Wayland demo programs (no longer being built) + +# libdecor/build/demo +# libdecor/build/egl **/.DS_Store |
