Update .gitignore

This commit is contained in:
sosokker 2023-08-23 23:47:36 +07:00
parent dcd8ff7172
commit bb09c4b39b

74
.gitignore vendored
View File

@ -1,56 +1,66 @@
# Compiled Object files # Compiled Object files
*.o *.o
*.obj
# Compiled Dynamic libraries # Compiled Dynamic libraries
*.dll
*.so *.so
# Compiled Static libraries # Compiled Static libraries
*.lib
*.a *.a
# Compiled executables # Executables
*.exe *.exe
# Compiled binaries
/bin/
/build/
/out/
# CMake build directory # CMake build directory
CMakeFiles/ build/
CMakeCache.txt
CMakeScripts/
CMakeVars.txt
Makefile
cmake_install.cmake
# Visual Studio Code settings # VSCode settings directory
.vscode/ .vscode/
# Compiled binaries for Windows # Compiled binary output
*.dll bin/
*.lib
# MacOS specific files # Ignore any local user-specific configuration files
.idea/
*.iml
# Ignore generated documentation
doc/
# Ignore generated files from your IDE or text editor
*.swp
*.swo
*.swn
# Ignore any temporary files or backups
*~
*.bak
*.backup
# Ignore macOS specific files
.DS_Store .DS_Store
# Compiled Python files # Ignore user-specific or sensitive information
__pycache__/ credentials.json
# Ignore any logs or temporary files # Ignore user-specific settings
*.log
*.tmp
# Ignore user-specific project files
.idea/
*.suo *.suo
*.user *.user
*.sln.docstates *.sln.docstates
# Ignore user-specific files # Ignore system-specific files
*.swp Thumbs.db
*~
# Ignore project dependencies # Ignore build artifacts in the src/ directory
/bin/ src/**/*.o
/build/ src/**/*.a
/out/ src/**/*.so
src/**/*.dll
src/**/*.exe
src/**/*.bin
src/**/*.dSYM/
# exclude eigen in include
include/Eigen