blob: dd99c69f8337eeab6928cdedc1bccaba52e7f25b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#
# Files to be ignored by Git (do not commit)
#
# Ignore everywhere, also in subdirectories
*.bak
*.bck
*.exe
*.log
*.o
**/.DS_Store
# CMake build artifacts if built in source - forbidden since FLTK 1.5.0.
# However, the following artifacts would be created by an attempt to
# execute `cmake` in-source:
**/CMakeCache.txt
**/CMakeFiles/
# VS Code (Visual Studio Code) Editor is a user generated folder
# that must not be committed
.vscode/
# default build folder `build` and more ...
/build
/TAGS
# /FL - this should not happen, but anyway ...
/FL/fl_config.h
# executables manually built in /misc/
# todo: maybe move the source files to folder /util/ ?
/misc/doxystar
/misc/fromdos
|