Skip to content

Commit ace762f

Browse files
committed
build: require meson >= 0.63
1 parent 5f60897 commit ace762f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

meson.build

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ project(
33
'cpp',
44
version: '3.9.0',
55
license: 'Apache-2.0',
6-
default_options: ['cpp_std=gnu++20,gnu++17,vc++latest,c++20,c++17'],
6+
default_options: [
7+
meson.version().version_compare('>= 1.3.0') ? 'cpp_std=gnu++20,gnu++17,vc++latest,c++20,c++17' : 'cpp_std=c++20',
8+
],
9+
meson_version: '>= 0.63',
710
)
811

912
subdir('include')

0 commit comments

Comments
 (0)