Skip to content

Commit e1d712e

Browse files
author
Anudeep Kambapu
authored
Merge pull request #32 from oneapi-src/add_gitignore
2 parents a744c63 + 0cf1b22 commit e1d712e

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Created by https://www.gitignore.io/api/c++
2+
3+
### C++ ###
4+
# Prerequisites
5+
*.d
6+
7+
# Compiled Object files
8+
*.slo
9+
*.lo
10+
*.o
11+
*.obj
12+
13+
# Precompiled Headers
14+
*.gch
15+
*.pch
16+
17+
# Compiled Dynamic libraries
18+
*.so
19+
*.dylib
20+
*.dll
21+
22+
# Fortran module files
23+
*.mod
24+
*.smod
25+
26+
# Compiled Static libraries
27+
*.lai
28+
*.la
29+
*.a
30+
*.lib
31+
32+
# Executables
33+
*.exe
34+
*.out
35+
*.app
36+
/*/*/*/qs
37+
38+
# Vim swap
39+
*.swp
40+
41+
# This is a comment
42+
# Ignore target at the top level
43+
/build/
44+
/Build/
45+
/bin/
46+
/Bin/
47+
# Ignore child project's targets as well
48+
/*/build/
49+
/*/Build/
50+
/*/bin/
51+
/*/Bin/
52+
53+
# And any grandchildren ...
54+
/*/*/build/
55+
/*/*/Build/
56+
/*/*/bin/
57+
/*/*/Bin/
58+
59+
# Or you can do:
60+
*build*/
61+
*Build*/
62+
*bin*/
63+
*Bin*/
64+
65+
# which matches 'target' in any sub folder
66+
*.syntastic_cpp_config

0 commit comments

Comments
 (0)