diff options
author | Brad King <brad.king@kitware.com> | 2019-06-27 12:56:31 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-06-27 12:56:41 (GMT) |
commit | 3327fe948ef61ec907b1d0c056d8933f65c18214 (patch) | |
tree | 952575463628c55ab0178f4cb161460b75362a2b /Help/prop_tgt | |
parent | 50b2e74396fe09e928bf5d2b4c747257394aa138 (diff) | |
parent | cd92f8f8bf9d3312f195ac5c27c129ff7868fa7e (diff) | |
download | CMake-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.rst | 14 |
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") |