CPP-Neural-Network/.gitignore
2023-08-23 23:47:36 +07:00

66 lines
862 B
Plaintext

# Compiled Object files
*.o
*.obj
# Compiled Dynamic libraries
*.dll
*.so
# Compiled Static libraries
*.lib
*.a
# Executables
*.exe
# CMake build directory
build/
# VSCode settings directory
.vscode/
# Compiled binary output
bin/
# 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
# Ignore user-specific or sensitive information
credentials.json
# Ignore user-specific settings
*.suo
*.user
*.sln.docstates
# Ignore system-specific files
Thumbs.db
# Ignore build artifacts in the src/ directory
src/**/*.o
src/**/*.a
src/**/*.so
src/**/*.dll
src/**/*.exe
src/**/*.bin
src/**/*.dSYM/
# exclude eigen in include
include/Eigen