We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The CMakeLists.txt currently reads (line 9):
CMakeLists.txt
set(CMAKE_CXX_STANDARD 17)
When using an old compiler that does not support c++17, CMake will silently fall back to an older standard. This may lead to varying user-experience.
c++17
Consider setting CMAKE_CXX_STANDARD_REQUIRED as well as CMAKE_CXX_EXTENSIONS to ensure usage of c++17 (alongside a defined set of compiler extensions).
CMAKE_CXX_STANDARD_REQUIRED
CMAKE_CXX_EXTENSIONS
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
CMakeLists.txt
currently reads (line 9):set(CMAKE_CXX_STANDARD 17)
When using an old compiler that does not support
c++17
, CMake will silently fall back to an older standard. This may lead to varying user-experience.Consider setting
CMAKE_CXX_STANDARD_REQUIRED
as well asCMAKE_CXX_EXTENSIONS
to ensure usage ofc++17
(alongside a defined set of compiler extensions).The text was updated successfully, but these errors were encountered: