Newer
Older
Skillsemi2023_WEB_Otaki_Nemoto / .gitignore

#ignore thumbnails created by windows
Thumbs.db
#Ignore files build by Visual Studio
Debug/
Release/
ipch/
bin/
obj/
lib/
lib64/
share/
packages/
venv/
*.aps
*.bak
*.cache
*.clw
*.dll
*.exe
*.ilk
*.lib
*.log
*.mak
*.ncb
*.obj
*.opensdf
*.opt
*.pch
*.pdb
*.sbr
*.sdf
*.sln.old
*.suo
*.tlb
*.tlh
*.user
*.VC.db
*.VC.opendb
*.vcproj.*.old
*.vspscc
*_i.c
*_p.c
.scannerwork/
.vs/
__vm/

# 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
*.lock


# for python
__pycache__/
*.py[cod]
*$py.class

# for ss2023 data
*.txt
*.csv
*.xlsx
*.jpg
*.png
*.tif
*.dcm
*.raw
*.mhd
*.xml
*.npz
*.mp4
*.avi
*.json

# for deep learning model
*.pth
*.onnx

# ZoneID (WSL)
*Zone.Identifier


# End of https://www.toptal.com/developers/gitignore/api/c++