From ab91b3f7f0310bee3c56ee57f1f9785967d4d03b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Mon, 20 Jan 2025 20:26:46 +0800 Subject: [PATCH] c++20 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fb1977..7315c85 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROG= sndlock SRCS= imgui_impl_glfw.cpp imgui_impl_opengl3.cpp imgui_draw.cpp imgui_widgets.cpp imgui_tables.cpp imgui.cpp kirdy.cpp sndlock.cpp -CXXOPTS= -Wall `pkg-config --cflags glfw3 gl asio jsoncpp` +CXXOPTS= -Wall -std=c++20 `pkg-config --cflags glfw3 gl asio jsoncpp` LDFLAGS= `pkg-config --libs glfw3 gl asio jsoncpp` LDADD= -lsndio -lm