52 lines
600 B
Plaintext
52 lines
600 B
Plaintext
# Created by https://www.toptal.com/developers/gitignore/api/c++
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=c++
|
|
|
|
### 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
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/c++
|
|
|
|
# Others
|
|
.vs
|
|
CMakeSettings.json
|
|
|
|
# Specific directories
|
|
build/
|
|
msvc_intermediate/
|
|
out/
|
|
|
|
# CLion
|
|
.idea/
|
|
**/cmake-build-*/
|