diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1cb099c --- /dev/null +++ b/.gitignore @@ -0,0 +1,47 @@ +# ---> 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
+
+# Debug/Release folder
+/Debug/
+/Hook/Debug/
+/Launcher/Debug/
+/Release/
+/Hook/Release/
+/Launcher/Release/
+
+# Visual Studio
+/.vs/
+
+# never ignore stuff from packages directory - had problems compiling, because detours.lib was missing when cloning from this repo lmao
+!/packages/**
\ No newline at end of file |