Skip to content

Commit aed14d8

Browse files
committed
Update .gitignore for project
1 parent 476f991 commit aed14d8

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,97 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Kernel Module Compile Results
46+
*.mod*
47+
*.cmd
48+
.tmp_versions/
49+
modules.order
50+
Module.symvers
51+
Mkfile.old
52+
dkms.conf
53+
54+
# CLion
55+
/.idea
56+
57+
# CMake
58+
/CMakeFiles
59+
/cmake-build*
60+
61+
# Code::Blocks
62+
*.layout
63+
*.cbp
64+
*.depend
65+
66+
# Project Files
67+
Makefile
68+
main-*
69+
layout.*
70+
!layout.rst
71+
/_skbuild
72+
73+
# CMake
74+
CMakeCache.txt
75+
/CMakeTmp
76+
*CMakeTmp*
77+
*CMakeFiles*
78+
*CMakeCache.txt
79+
*cmake_install.cmake
80+
install_manifest.txt
81+
CTestTestfile.cmake
82+
83+
# Python packages
84+
/*.egg-info
185
/build
86+
/dist
87+
*.pyc
88+
MANIFEST
89+
/venv
90+
91+
# Documentation
92+
/docs/_build
93+
/docs/html
94+
/docs/_doctrees
95+
/docs/doxygen/xml
96+
/html
97+
/latex

0 commit comments

Comments
 (0)