mirror of
https://github.com/Kitware/CMake.git
synced 2026-06-24 08:47:59 +00:00
Extend commit c37e279014 (Tests/CompileFeatures: Cover c_std_## and
cxx_std_## meta-features, 2024-04-02, v3.30.0-rc1~279^2~1) to cover the
per-language standard level target properties.
5 lines
157 B
C++
5 lines
157 B
C++
#include "cxx_std.h"
|
|
#if defined(CXX_STD) && CXX_STD >= CXX_STD_11 && !defined(CXX_STD_MISSING)
|
|
# error "CXX_STANDARD 98 honored as higher standard"
|
|
#endif
|