summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-07-17 20:29:37 +0200
committerAki <please@ignore.pl>2021-07-17 20:29:37 +0200
commit8dbeec4824bc619a4eb05d1c6fcc6d21620fdbd0 (patch)
tree9d8e25b72c5440ef5a5716488247127a9d19277b /Makefile
parentbc1e957bc1d764d2d639b181fc6e666055df4d81 (diff)
downloadmarkdown-8dbeec4824bc619a4eb05d1c6fcc6d21620fdbd0.zip
markdown-8dbeec4824bc619a4eb05d1c6fcc6d21620fdbd0.tar.gz
markdown-8dbeec4824bc619a4eb05d1c6fcc6d21620fdbd0.tar.bz2
Changed compiler flags to use C++17
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 516958f..a8cf86c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-CXXFLAGS+=-Wall -Wpedantic -Wextra
+CXXFLAGS+=-Wall -Wpedantic -Wextra -std=c++17
CXXFLAGS+=$(shell pkg-config --cflags gl glfw3 glew)
LDLIBS+=-l:libimgui.a -l:libimgui_gl3.a -l:libimgui_md.a -lstdc++ -lm
LDLIBS+=$(shell pkg-config --libs gl glfw3 glew md4c)