Skip to content

Commit 6cc339e

Browse files
authored
adapt gitignore after the fuzzyc import (#997)
1 parent 69f34f4 commit 6cc339e

1 file changed

Lines changed: 91 additions & 1 deletion

File tree

.gitignore

Lines changed: 91 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,97 @@ travis_wait_*
1010
/protoc
1111
project/.bloop
1212
.bloop
13+
14+
.project
15+
*.class
16+
/.classpath
17+
/project/project/
18+
/project/target/
19+
/target
20+
/foo.c
21+
/woo.c
22+
1323
foo.c
1424
woo.c
1525
/CMakeCache.txt
16-
/CMakeFiles
26+
/CMakeFiles
27+
28+
cpg.bin.zip
29+
30+
## Bloop ##
31+
.bloop/
32+
33+
# Created by https://www.gitignore.io/api/c++,cmake,linux
34+
# Edit at https://www.gitignore.io/?templates=c++,cmake,linux
35+
36+
## FuzzyPP ##
37+
bin/
38+
lib/
39+
40+
### C++ ###
41+
# Prerequisites
42+
*.d
43+
44+
# Compiled Object files
45+
*.slo
46+
*.lo
47+
*.o
48+
*.obj
49+
50+
# Precompiled Headers
51+
*.gch
52+
*.pch
53+
54+
# Compiled Dynamic libraries
55+
*.so
56+
*.dylib
57+
*.dll
58+
59+
# Fortran module files
60+
*.mod
61+
*.smod
62+
63+
# Compiled Static libraries
64+
*.lai
65+
*.la
66+
*.a
67+
*.lib
68+
69+
# Executables
70+
*.exe
71+
*.out
72+
*.app
73+
74+
### CMake ###
75+
CMakeLists.txt.user
76+
CMakeCache.txt
77+
CMakeFiles
78+
CMakeScripts
79+
Testing
80+
Makefile
81+
cmake_install.cmake
82+
install_manifest.txt
83+
compile_commands.json
84+
CTestTestfile.cmake
85+
_deps
86+
87+
### CMake Patch ###
88+
# External projects
89+
*-prefix/
90+
91+
### Linux ###
92+
*~
93+
94+
# temporary files which can be created if a process still has a handle open of a deleted file
95+
.fuse_hidden*
96+
97+
# KDE directory preferences
98+
.directory
99+
100+
# Linux trash folder which might appear on any partition or disk
101+
.Trash-*
102+
103+
# .nfs files are created when an open file is removed but is still being accessed
104+
.nfs*
105+
106+
# End of https://www.gitignore.io/api/c++,cmake,linux

0 commit comments

Comments
 (0)