From 1eaf1ef1b920b76e4241b3ea5cd18a4259e332b8 Mon Sep 17 00:00:00 2001 From: jonny_jr9 Date: Tue, 7 Nov 2023 15:20:03 +0100 Subject: [PATCH] init Add gitignore --- .gitignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..47ce164 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# General +*.swp + +# Build and output directories +build/ +bin/ + +# CMake +CMakeFiles/ +CMakeCache.txt +CMakeSettings.json +cmake_install.cmake +compile_commands.json + +# Visual Studio Code specific files +.vscode/ +*.code-workspace + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Executables +*.exe +*.out + +# Libraries +*.a +*.lib + +# Ignore any backup files +*~ \ No newline at end of file