limedriver/.gitignore
Kumi 4a9fc5c81a
Migrate to CMake build system and remove autoconf
artifacts

Transition the project's build system from Autoconf to CMake,
streamlining the build process and conforming to modern C++ project
standards. Autoconf related files like 'configure', 'install-sh', and
'missing' have been removed while CMakeLists and relevant .cmake
configuration files are added to support the new system. This change
addresses the need for a more portable and easier-to-maintain build
system, particularly beneficial for cross-platform development. As a
result, build process customization and dependency management are
expected to be more straightforward.

Additionally, `.gitignore` has been adjusted to accommodate the CMake
build outputs. The new CMake build system introduces `build/` as the
directory for out-of-source builds, replacing the more scattered build
artifacts of the previous system.
2024-02-09 12:38:41 +01:00

50 lines
437 B
Text

# Compiled object files
*.o
*.obj
*.lo
# Linked and compiled binary files (executables)
bin/
*.so
*.a
*.out
*.exe
# CMake files
build/
# 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
# Data
data/