From 07b4718dc2aec21ce3d0cb00f9ccd7f022eccd91 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 14 Feb 2020 17:31:30 +0100 Subject: [PATCH] Move VS specific gitignore to projects directory, add Linux specific gitignore to linux directory --- linux/.gitignore | 11 +++++++++++ .gitignore => projects/.gitignore | 0 2 files changed, 11 insertions(+) create mode 100644 linux/.gitignore rename .gitignore => projects/.gitignore (100%) diff --git a/linux/.gitignore b/linux/.gitignore new file mode 100644 index 0000000..cf7b7b2 --- /dev/null +++ b/linux/.gitignore @@ -0,0 +1,11 @@ +# Don't commit compiled mod libraries +*.so +*.so.* +*.dylib + +# Allow Half-Life-specific files that would otherwise be ignored +!libSDL2-2.0.so.0 +!libSDL2-2.0.so.0.dbg +!vgui.so +!release/vgui.dylib +!release/vgui.so diff --git a/.gitignore b/projects/.gitignore similarity index 100% rename from .gitignore rename to projects/.gitignore