mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 15:38:47 +00:00
60 lines
580 B
Plaintext
60 lines
580 B
Plaintext
## https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
|
|
|
|
# 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
|
|
|
|
# Data
|
|
!**/data/**/*
|
|
|
|
# Sample
|
|
!**/sample/**/*
|
|
!**/samples/**/*
|
|
|
|
# tempCodeRunnerFile
|
|
temp/**
|
|
**/tempCodeRunnerFile.*
|
|
temp*
|
|
|
|
# Utils
|
|
!/utils/
|
|
|
|
# Compile Temps
|
|
*.ii
|
|
*.s
|
|
|
|
# Codespace Env Files
|
|
.venv
|
|
|
|
# https://github.com/agrawal-d/cph
|
|
.cph/
|