diff options
author | Pär Björklund <per.bjorklund@gmail.com> | 2018-01-20 13:27:51 +0100 |
---|---|---|
committer | Pär Björklund <per.bjorklund@gmail.com> | 2018-01-20 19:06:14 +0100 |
commit | b823781c5a59013b307593023e83e61430829a48 (patch) | |
tree | f499e8f47099bb797e03ff94ee1535c708ccd770 /.gitignore | |
parent | 92ca60fabfb894dd742fb0e72f211e4101a5cb0d (diff) |
Update .gitignore
Ignore build* to make it easier to use multiple build dirs at the same time and true out of tree builds means any of the git stuff in VS doesn't work.
Ignore some stuff created when using VS2017 open folder
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index b09a0d4782..db9a0b4f4f 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,11 @@ testMain # CLion /.idea .vscode/ +# Created in vs2017 when using open folder +.vs/ + +# Created in vs2017 when using open folder with cmake tools +CMakeSettings.json # generated files etc .last_success_revision @@ -58,7 +63,6 @@ testMain *.diagsession # osx specifics -/build/ /kodi.build/ /Debug/ /Release/ @@ -360,3 +364,7 @@ exclude_dll.txt #certificates /system/certs/ + +# VS git tools doesn't work for true out of tree builds and it's +# useful to be able to work on multiple configs +/build*/ |