From fd972af89c7c5cbf7786d3b037ae27b1966543c0 Mon Sep 17 00:00:00 2001 From: pandx Date: Mon, 17 Apr 2023 17:50:17 +0800 Subject: [PATCH] add ignore file. --- .gitignore | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..055af83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# swap files (usually generated by vim) +*.swap + +# cppcheck scrips and reports +*cppcheck* +*cppchk* + +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Protobuf generated files +*.pb.h +*.pb.cc + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables for windows +*.exe + +# usr configurations +*.usr +*.user +*.pro.user.* +*.orig +*.autosave + +# build directory +build*/ + +# libraries +deploy/ + +# protobuf source files +*.pb.h +*.pb.cc + +