summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2024-05-01 17:25:11 +0200
committerRoland Reichwein <mail@reichwein.it>2024-05-01 17:25:11 +0200
commitaed6caab9ce43a830c45da08f0380760a2ae4aec (patch)
treea5662fb61996067fec3f6c9e8375245891b75018 /Makefile
parent9149c5fcd7dbb4417f089a4e225dd1463a86cc00 (diff)
Skip actions for up-to-date targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fec3007..011a775 100644
--- a/Makefile
+++ b/Makefile
@@ -7,6 +7,7 @@ OBJ=$(SRC:.cpp=.o)
all: $(PROJECTNAME)
LDLIBS += -lfmt
+CXXFLAGS += -std=c++17
$(PROJECTNAME): $(OBJ)
$(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@