aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-11-06 19:54:43 +0000
committerzedarider <ymherklotz@gmail.com>2016-11-06 19:54:43 +0000
commit4428e477ae27e8634715610649b68919810dd684 (patch)
treed917dfa4a0be72daf697c695ab4ea02b2ce82505 /Makefile
parent4716585d5acb45b00960eebb4f8ae4580e580da0 (diff)
downloadChessAI-4428e477ae27e8634715610649b68919810dd684.tar.gz
ChessAI-4428e477ae27e8634715610649b68919810dd684.zip
fixed makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3c0f9e7..1612948 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ TARGET := bin/chess_ai
SRCEXT := cpp
SOURCES := $(shell find $(SRCDIR) -type f -name "*.$(SRCEXT)")
OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.o))
-CFLAGS := -g -Wall -Wextra
+CFLAGS := -g -Wall -Wextra -std=c++14
LIB :=
INC := -I include