File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11ncmpc 0.53 - not yet released
2+ * switch to C++23
23* build: require Meson 1.2
34
45ncmpc 0.52 - (2025-02-17)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ How to compile and install ncmpc
1313
1414You need:
1515
16- - a C++20 compliant compiler (e.g. gcc or clang)
16+ - a C++23 compliant compiler (e.g. gcc or clang)
1717- `libfmt <https://fmt.dev/ >`__
1818- `libmpdclient <https://www.musicpd.org/libs/libmpdclient/ >`__ 2.16
1919- `ncurses <https://www.gnu.org/software/ncurses/ >`__
Original file line number Diff line number Diff line change @@ -4,9 +4,12 @@ project(
44 version : ' 0.53' ,
55 meson_version : ' >= 1.2' ,
66 default_options : [
7- ' cpp_std=c++20' ,
7+ ' cpp_std=c++23' ,
8+ ' build.cpp_std=c++23' ,
89 ' warning_level=3' ,
910
11+ ' fmt:cpp_std=c++23' ,
12+
1013 # If we build libmpdclient, it should be linked statically into
1114 # our executable.
1215 ' libmpdclient:default_library=static' ,
You can’t perform that action at this time.
0 commit comments