diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2016-11-21 15:05:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-29 14:31:30 (GMT) |
commit | e390991846825799e619e072a28f1da58b7c89ba (patch) | |
tree | c311f84f4df2a5e55cf667fe505e243de45c9258 /Help/prop_tgt | |
parent | 1528831bb1330cc539004f9fb3068e871f109d34 (diff) | |
download | CMake-e390991846825799e619e072a28f1da58b7c89ba.zip CMake-e390991846825799e619e072a28f1da58b7c89ba.tar.gz CMake-e390991846825799e619e072a28f1da58b7c89ba.tar.bz2 |
VS: Add option to customize vcxproj user props file
Add a `VS_USER_PROPS_CXX` target property to set the user props file of
the generated `.vcxproj` file to be something other than the default
`$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props`.
Diffstat (limited to 'Help/prop_tgt')
-rw-r--r-- | Help/prop_tgt/VS_USER_PROPS_CXX.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Help/prop_tgt/VS_USER_PROPS_CXX.rst b/Help/prop_tgt/VS_USER_PROPS_CXX.rst new file mode 100644 index 0000000..083ce03 --- /dev/null +++ b/Help/prop_tgt/VS_USER_PROPS_CXX.rst @@ -0,0 +1,12 @@ +VS_USER_PROPS_CXX +----------------- + +Sets the user props file to be included in the visual studio +C++ project file. The standard path is +``$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props``, which is +in most cases the same as +``%LOCALAPPDATA%\\Microsoft\\MSBuild\\v4.0\\Microsoft.Cpp.Win32.user.props`` +or ``%LOCALAPPDATA%\\Microsoft\\MSBuild\\v4.0\\Microsoft.Cpp.x64.user.props``. + +The ``*.user.props`` files can be used for Visual Studio wide +configuration which is independent from cmake. |