aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 66d2662..bd9b8f0 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ BUILD/CMakeCache.txt: CMakeLists.txt
-G Ninja \
-DCMAKE_EXPORT_COMPILE_COMMANDS=1 \
-DCMAKE_BUILD_TYPE=DEBUG \
- -DCMAKE_CXX_STANDARD=14 \
+ -DCMAKE_CXX_STANDARD=17 \
-DBUILD_SHARED_LIBS=OFF \
#-DCMAKE_FIND_DEBUG_MODE=ON
ln -sfn BUILD/compile_commands.json
@@ -49,7 +49,7 @@ targets:
ninja -C BUILD -t targets
fmt:
- clang-format -i $(shell shell find src test -type f -name \*.h -or -name \*.cc)
+ clang-format -i $(shell find src test -type f -name \*.h -or -name \*.cc)
# -- CLEAN ---------------------------------------------------------------------