diff options
author | DrFrugal <drfrugal@vmi2238186.contaboserver.net> | 2024-12-30 18:42:10 +0100 |
---|---|---|
committer | DrFrugal <drfrugal@vmi2238186.contaboserver.net> | 2024-12-30 18:42:10 +0100 |
commit | 24ca502e3af452603ed191948e5ece016e2204b2 (patch) | |
tree | 52964d5f1cb574b155cbc23ad764aa64fb41f330 /.gitignore |
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 |