mirror of
https://github.com/fltk/fltk.git
synced 2026-02-06 00:01:57 +08:00
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.
14 lines
443 B
Plaintext
14 lines
443 B
Plaintext
#
|
|
# Files to be ignored by Git (do not commit)
|
|
#
|
|
# Source files and headers generated by fluid:
|
|
#
|
|
# Note: these files *should* never exist (since FLTK 1.5.0) unless a user
|
|
# (developer) creates them manually by running fluid in the source tree.
|
|
#
|
|
# The following list can be generated using bash or another POSIX shell:
|
|
# $ LC_ALL=C; for f in *.fl; do b=`basename $f .fl`; echo $b.cxx; echo $b.h; done
|
|
|
|
fluid-callback.cxx
|
|
fluid-callback.h
|