diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-08-17 12:01:41 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-08-17 12:01:41 +0200 |
commit | 614bb91634fe093c5e86a5a9f98d310be25257d6 (patch) | |
tree | 273f5aeb13cf2580406493279d9247820e44b01d /daemon/Makefile | |
parent | c4a0bc0f82d7e774ab4f76bb019d588776cd40f1 (diff) |
Downgrade to C++20
Diffstat (limited to 'daemon/Makefile')
-rw-r--r-- | daemon/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/Makefile b/daemon/Makefile index c42a690..9bda3d2 100644 --- a/daemon/Makefile +++ b/daemon/Makefile @@ -23,7 +23,7 @@ INC_FLAGS := $(addprefix -I,$(INC_DIRS)) # The -MMD and -MP flags together generate Makefiles for us! # These files will have .d instead of .o as the output. -CPPFLAGS := -O3 -std=c++23 $(INC_FLAGS) -MMD -MP +CPPFLAGS := -O3 -std=c++20 $(INC_FLAGS) -MMD -MP LDFLAGS := -lrtmidi -lcurl -ludev |