From 01a76578fc141507423d409e3e8e54cf2ee1b944 Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Sun, 1 Sep 2024 09:38:42 -0600 Subject: [PATCH] fixed gitignore --- .gitignore | 4 +++- Makefile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ccf196d..843fe14 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,6 @@ *.out *.app -.vscode/ \ No newline at end of file +.vscode/ +bin/ +build/ \ No newline at end of file diff --git a/Makefile b/Makefile index e54dc21..68fc199 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ #### PROJECT SETTINGS #### # The name of the executable to be created -BIN_NAME := raycast +BIN_NAME := raycast.out # Compiler used CXX ?= g++ # Extension of source files used in the project