Skip to content

Commit 91528fc

Browse files
committed
fix: use c++20 standard because of windows
1 parent 1fac6f9 commit 91528fc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

meson.build

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ project(
77
version: run_command(['generate_version.py', '--print'], check: true).stdout().strip(),
88
license: 'BSD-3',
99
meson_version: '>=1.2.1',
10-
default_options: ['buildtype=release', 'c_std=c11', 'warning_level=2'],
10+
default_options: [
11+
'buildtype=release',
12+
'c_std=c11',
13+
'cpp_std=c++20',
14+
'warning_level=2',
15+
],
1116
)
1217

1318
fs = import('fs')

0 commit comments

Comments
 (0)