diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /.gitignore | |
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 |