Files
httpsbench/.gitignore
T
retoor 2f3363f50b feat: add initial project scaffolding with .gitignore, MIT license, and README
This commit establishes the foundational structure for the httpsbench project by introducing three essential files: a comprehensive .gitignore covering C++ build artifacts and compiled objects, an MIT license file attributing copyright to retoor, and a brief README describing the application's purpose as an HTTPS server benchmarking tool.
2024-12-12 05:43:46 +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