diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf0c83d --- /dev/null +++ b/.gitignore @@ -0,0 +1,70 @@ +.cache +build +imgui + +# Compiled Object files +*.slo +*.lo +*.o + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# Unnecessary Visual C++ files +ipch/ +.vs/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.idb +*.pdb +*.suo +*.VC.db +*.user + +# Visual C++ Build results +x64* +x86* +bld* +[Bb]uild*/* +[Bb]in/* + +# Compressed files +*.tar.gz +*.zip +*.7z + +# CMake artifacts +CMakeCache.txt +CMakeFiles/ +Makefile +cmake_install.cmake + +# Files Intellij CLion +.idea/ + +# VS Code Workspace Settings folder +.vscode/ + +# macOS Finder +.DS_STORE |