From 3bfa6097d546fe4538a0f813915fdfc39469a5ba Mon Sep 17 00:00:00 2001 From: John Keiser Date: Wed, 14 Aug 2019 10:27:59 -0700 Subject: [PATCH] .gitignore that ignores all the things --- .gitignore | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d1638636..532eb215 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,62 @@ -build/ \ No newline at end of file +.vscode/ +/VS/ +/build/ +/benchbranch/ +/submodules/ + +# Build outputs (TODO build to a subdir so we can exclude that instead) +/allparserscheckfile +/basictests +/json2json +/jsoncheck +/jsonpointer +/jsonstats +/minify +/numberparsingcheck +/parse +/perfdiff +/pointercheck +/statisticalmodel +/stringparsingcheck +/submodules +/ujdecode.o +/amalgamation_demo.cpp +/simdjson.cpp +/simdjson.h +/singleheader/amalgamation_demo +/singleheader/demo + +# Generic from https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore + +# 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