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 /Tests/RunCMake/VS10Project/my.props | |
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 'Tests/RunCMake/VS10Project/my.props')
-rw-r--r-- | Tests/RunCMake/VS10Project/my.props | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/VS10Project/my.props b/Tests/RunCMake/VS10Project/my.props new file mode 100644 index 0000000..7c98cde --- /dev/null +++ b/Tests/RunCMake/VS10Project/my.props @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + </PropertyGroup> +</Project> |