forked from cyang-kth/fmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
65 lines (53 loc) · 1.16 KB
/
.gitignore
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# swig gitignore based on https://github.com/swig/swig/blob/master/.gitignore
# Compiled Source
*.o
*.class
# Editor files and various other junk
.*.sw?
*.bak
*.log
.DS_Store
# Local PCRE
pcre
*.gz
# C/C++ object files, based on:
# https://github.com/github/gitignore/blob/master/C.gitignore
# https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
*.slo
*.lo
*.gch
# C/C++ dynamic libraries, based on:
# https://github.com/github/gitignore/blob/master/C.gitignore
# https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
*.dll
*.so
*.so.*
*.dylib
*.bundle
# C/C++ static libraries, based on:
# https://github.com/github/gitignore/blob/master/C.gitignore
# https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
*.lib
*.lai
*.la
*.a
# C/C++ executables, based on:
# https://github.com/github/gitignore/blob/master/C.gitignore
# https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
*.exe
*.out
*.app
# SWIG common generated files
*_wrap.c
*_wrap.cpp
*_wrap.cxx
*_wrap.h
*-gypcopy.cxx
*.pyc
# Out of source tree build directories
*build*/
lib/
extensions/
# Jupyternotebook
.ipynb_checkpoints
*/.ipynb_checkpoints/*