Add 23 and 26 to the cxxstd variant for boost (#40081)

This commit is contained in:
Auriane R 2023-09-20 16:21:06 +02:00 committed by GitHub
parent e963d02a07
commit c4a53cf376
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,9 +176,11 @@ def libs(self):
"14",
# C++17 is not supported by Boost < 1.63.0.
conditional("17", when="@1.63.0:"),
# C++20/2a is not support by Boost < 1.73.0
# C++20/2a is not supported by Boost < 1.73.0
conditional("2a", when="@1.73.0:"),
conditional("20", when="@1.77.0:"),
conditional("23", when="@1.79.0:"),
conditional("26", when="@1.79.0:"),
),
multi=False,
description="Use the specified C++ standard when building.",