summaryrefslogtreecommitdiffstats
path: root/Help/prop_tgt
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-06-27 12:56:31 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-06-27 12:56:41 (GMT)
commit3327fe948ef61ec907b1d0c056d8933f65c18214 (patch)
tree952575463628c55ab0178f4cb161460b75362a2b /Help/prop_tgt
parent50b2e74396fe09e928bf5d2b4c747257394aa138 (diff)
parentcd92f8f8bf9d3312f195ac5c27c129ff7868fa7e (diff)
downloadCMake-3327fe948ef61ec907b1d0c056d8933f65c18214.zip
CMake-3327fe948ef61ec907b1d0c056d8933f65c18214.tar.gz
CMake-3327fe948ef61ec907b1d0c056d8933f65c18214.tar.bz2
Merge topic 'vs-dpi-aware'
cd92f8f8bf VS: Add VS_DPI_AWARE target property Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3418
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r--Help/prop_tgt/VS_DPI_AWARE.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/Help/prop_tgt/VS_DPI_AWARE.rst b/Help/prop_tgt/VS_DPI_AWARE.rst
new file mode 100644
index 0000000..82640cc
--- /dev/null
+++ b/Help/prop_tgt/VS_DPI_AWARE.rst
@@ -0,0 +1,14 @@
+VS_DPI_AWARE
+------------
+
+Set the Manifest Tool -> Input and Output -> DPI Awareness in the Visual Studio
+target project properties.
+
+Valid values are ``PerMonitor``, ``ON``, or ``OFF``.
+
+For example:
+
+.. code-block:: cmake
+
+ add_executable(myproject myproject.cpp)
+ set_property(TARGET myproject PROPERTY VS_DPI_AWARE "PerMonitor")