diff options
author | Fabian Otto <fabian.otto@rohde-schwarz.com> | 2016-02-25 21:04:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-02-26 15:52:13 (GMT) |
commit | 6122909c33bea1256867a40a09e0eafa569e8c8b (patch) | |
tree | f47eba39b8d9cd9cb8c522f44c32807e9ad13c57 /Help/prop_tgt | |
parent | 6b0a664c1639b19ccc652a4be5f9824d0bf88e48 (diff) | |
download | CMake-6122909c33bea1256867a40a09e0eafa569e8c8b.zip CMake-6122909c33bea1256867a40a09e0eafa569e8c8b.tar.gz CMake-6122909c33bea1256867a40a09e0eafa569e8c8b.tar.bz2 |
VS: Add option to set `ConfigurationType` of a .vcxproj file
Add a VS_CONFIGURATION_TYPE target property to set this value
explicitly. This is useful to build a Windows Kernel Mode Driver,
for example.
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/VS_CONFIGURATION_TYPE.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Help/prop_tgt/VS_CONFIGURATION_TYPE.rst b/Help/prop_tgt/VS_CONFIGURATION_TYPE.rst new file mode 100644 index 0000000..ff987ff --- /dev/null +++ b/Help/prop_tgt/VS_CONFIGURATION_TYPE.rst @@ -0,0 +1,10 @@ +VS_CONFIGURATION_TYPE +--------------------- + +Visual Studio project configuration type. + +Sets the ``ConfigurationType`` attribute for a generated Visual Studio project. +If this property is set, it overrides the default setting that is based on the +target type (e.g. ``StaticLibrary``, ``Application``, ...). + +Supported on :ref:`Visual Studio Generators` for VS 2010 and higher. |