mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
Run the `Utilities/Sphinx/update_versions.py` script to add initial markup to every top-level document and find module. Issue: #19715
17 lines
360 B
ReStructuredText
17 lines
360 B
ReStructuredText
VS_DPI_AWARE
|
|
------------
|
|
|
|
.. versionadded:: 3.16
|
|
|
|
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")
|