diff options
author | Brad King <brad.king@kitware.com> | 2016-12-01 19:24:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-06 13:58:41 (GMT) |
commit | 45aa03b97aeeb512264ac2bfbb2028330be254d1 (patch) | |
tree | 883f2e60ea1539fa93f988b0e32dd983a043e020 /Help/release | |
parent | 3bb2051eef5c3a07f99e9e6549187211758317d6 (diff) | |
download | CMake-45aa03b97aeeb512264ac2bfbb2028330be254d1.zip CMake-45aa03b97aeeb512264ac2bfbb2028330be254d1.tar.gz CMake-45aa03b97aeeb512264ac2bfbb2028330be254d1.tar.bz2 |
try_compile: Add options to specify language standards
Give `try_compile` callers a way to control the `CXX_STANDARD`,
`CXX_STANDARD_REQUIRED`, and `CXX_EXTENSIONS` properties of the
generated test target (or the `C` equivalents) in order to compile a
test source for a particular language standard.
Issue: #16456
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/try_compile-lang-std.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/release/dev/try_compile-lang-std.rst b/Help/release/dev/try_compile-lang-std.rst new file mode 100644 index 0000000..64d082b --- /dev/null +++ b/Help/release/dev/try_compile-lang-std.rst @@ -0,0 +1,5 @@ +try_compile-lang-std +-------------------- + +* The :command:`try_compile` command source file signature gained new options + to specify the language standard to use in the generated test project. |