mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-21 17:42:25 +00:00
Kumi
4a9fc5c81a
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.
50 lines
437 B
Text
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/
|