LimeDriverBindings/.gitignore
Kumi 261ccac1a0
Extend .gitignore and update build setup for C++ integration
The .gitignore file now ignores C++ build artifacts alongside existing ones. In setup.py, the build configuration for 'limedriver' was modified to include a new C++ source file, indicating a shift to or expansion of C++ code usage within the project. This change prepares the build process to handle and compile C++ code, potentially for performance improvements or new functionality that leverages C++ capabilities.
2024-02-08 09:07:09 +01:00

67 lines
649 B
Plaintext

# Compiled object files
*.o
*.obj
*.lo
# Linked and compiled binary files (executables)
bin/
*.so
*.a
*.out
*.exe
# Autoconf and Automake generated files
config.h
config.h.in
config.status
autom4te.cache/
Makefile
*.m4
*.autosave
# Dependency files generated by gcc
*.d
.deps/
.dirstamp
# Archive files
*.tar
*.tar.*
*.tgz
*.zip
# Backup files
*~
.*.swp
*.bak
*.orig
# OS generated files
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
# Editors' temporary files
.vscode/
*.sublime*
.idea/
*.swp
*.*~
# Log files
*.log
# Python cache data
__pycache__/
*.pyc
# Cython / Python build files
build/
*.c
*.cpp
src/limedriver.egg-info
# Data
data/
venv/