aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2024-03-24 16:01:51 +0100
committerJán Sučan <jan@jansucan.com>2024-03-24 16:25:41 +0100
commitdde03ff8796277f6ed0f8c8e8b18b83b801d6d27 (patch)
treea97b15b6b5e7153ede1db0c2748a59204ed5299d
parente54d3a1e4e7491c41610a6bac3789a10e8cdf7c6 (diff)
Require C++17
This enables use of more modern STL features, e.g., filesystem.
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 7813d5f..1796584 100644
--- a/config.mk
+++ b/config.mk
@@ -4,4 +4,4 @@ PROGRAM_VERSION = 2.0.0
PREFIX = /usr/local
CC=g++
-CFLAGS=-Wall -Wextra -Werror -std=c++11
+CFLAGS=-Wall -Wextra -Werror -std=c++17