mirror of
https://github.com/nqrduck/LimeDriverBindings.git
synced 2024-11-16 23:41:02 +00:00
Kumi
261ccac1a0
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.
67 lines
No EOL
649 B
Text
67 lines
No EOL
649 B
Text
# 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/ |