diff options
author | cflip <cflip@cflip.net> | 2022-01-29 22:09:36 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-01-29 22:09:36 -0700 |
commit | 07cf257dae91351e5cb6b5a34ffa93c2a3fd8247 (patch) | |
tree | 95df0f0cedefd21d12c26806a5bef3699e8ee8d7 | |
parent | cb7af3f4cac90f95926477b4001f9f80037568d5 (diff) |
Add CMake build output to gitignore
-rw-r--r-- | .gitignore | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,12 @@ +# CMake Output +CMakeCache.txt +CMakeFiles/ +*.cmake + +third-party/sdl2/sdl2-build/ +third-party/sdl2/sdl2-src/ +third-party/sdl2/sdl2/ + # Visual Studio Debug/ Release/ @@ -8,4 +17,6 @@ Release/ *.vcxproj.filters *.vcxproj.user + + build/ |