summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhangyang <[email protected]>2024-10-31 23:33:44 -0400
committerzhangyang <[email protected]>2024-10-31 23:33:44 -0400
commit13f73a3a0fb26e1a876d2111cad3aa88ff8136f6 (patch)
tree6d5b44deaae12da26d1135a0aaad52404f62161f
parent6d51b17062fd37adf83af3a19bda0600142899ba (diff)
Add .gitignore file to exclude build artifacts and temporary files
-rw-r--r--.gitignore37
1 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ac096fb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,37 @@
+*.d
+
+# Compiled Object files
+*.slo
+*.lo
+*.o
+*.obj
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Compiled Dynamic libraries
+*.so
+*.dylib
+*.dll
+
+# Fortran module files
+*.mod
+*.smod
+
+# Compiled Static libraries
+*.lai
+*.la
+*.a
+*.lib
+
+# Executables
+*.exe
+*.out
+*.app
+
+# cmake build
+build/*
+
+# .vscode
+.vscode/* \ No newline at end of file