summaryrefslogtreecommitdiffstats
path: root/Help/variable
diff options
context:
space:
mode:
authorMichael Stürmer <michael.stuermer@schaeffler.com>2018-05-03 04:57:08 (GMT)
committerMichael Stürmer <michael.stuermer@schaeffler.com>2018-05-15 07:00:31 (GMT)
commit71a033616a748d1bb4286ca0667cedf6b57df217 (patch)
tree685abddcc1baf6e244770125579c0b07806d974d /Help/variable
parentd793b482d914e0d8706b901dceeb1b5f0c405413 (diff)
downloadCMake-71a033616a748d1bb4286ca0667cedf6b57df217.zip
CMake-71a033616a748d1bb4286ca0667cedf6b57df217.tar.gz
CMake-71a033616a748d1bb4286ca0667cedf6b57df217.tar.bz2
added CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION variable
Fixes: #17955
Diffstat (limited to 'Help/variable')
-rw-r--r--Help/variable/CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/Help/variable/CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION.rst b/Help/variable/CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION.rst
new file mode 100644
index 0000000..124fefe
--- /dev/null
+++ b/Help/variable/CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION.rst
@@ -0,0 +1,16 @@
+CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION
+-------------------------------------
+
+Default value for :prop_tgt:`DOTNET_TARGET_FRAMEWORK_VERSION`
+property of targets.
+
+This variable is used to initialize the
+:prop_tgt:`DOTNET_TARGET_FRAMEWORK_VERSION` property on all
+targets. See that target property for additional information.
+
+Setting ``CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION`` may be necessary
+when working with ``C#`` and newer .NET framework versions to
+avoid referencing errors with the ``ALL_BUILD`` CMake target.
+
+This variable is only evaluated for :ref:`Visual Studio Generators`
+VS 2010 and above.
n> | | | | Restore also errno value before calling PyErr_SetFromErrno(). * | Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-4/+21 |\ \ | |/ | | | | imported at startup) now uses the backslashreplace error handler. | * Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-6/+22 | | | | | | | | imported at startup) now uses the backslashreplace error handler. * | stdprinter_write(): mention the encodingVictor Stinner2015-03-241-3/+4 | | * | Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handleVictor Stinner2015-03-191-17/+6 |/ | | | | | | | EINTR error and special cases for Windows. These functions now truncate the length to PY_SSIZE_T_MAX to have a portable and reliable behaviour. For example, read() result is undefined if counter is greater than PY_SSIZE_T_MAX on Linux. * Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-2/+2 | * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+2 |\ | | | | | | error messages and comments. | * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-2/+2 | | | | | | | | error messages and comments. | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-2/+2 | |\ | | | | | | | | | | | | | | | when result of PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277. | | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-2/+2 | | | | | | | | | | | | | | | | | | when result of PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277. * | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner2013-06-241-1/+1 | | | * | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-2/+2 |/ / | | | | | | when result of PyLong_AsLong() narrowed to int without checks. * | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-4/+4 | | * | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-10