Files
tikker/.gitignore
T
retoor 99d486f176 feat: add initial project scaffold with .gitignore, MIT license, and README
Create the foundational project structure for the tikker application by introducing a comprehensive .gitignore file covering C++ build artifacts, a standard MIT license file, and a minimal README describing the project as a key press monitoring tool.
2024-12-08 15:08:39 +00:00

35 lines
282 B
Plaintext

# ---> C++
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app