diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-09 15:32:22 (GMT) |
---|---|---|
committer | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-13 08:27:21 (GMT) |
commit | 6fda6005b306cc4a1e9e9e66d9cd4525fc623f73 (patch) | |
tree | 002cb3a31b34ccf475849f2fdb353bc23ac68ba0 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | 7f5842d7d943403fca02a5345e9d6f779eb7bf9a (diff) | |
download | CMake-6fda6005b306cc4a1e9e9e66d9cd4525fc623f73.zip CMake-6fda6005b306cc4a1e9e9e66d9cd4525fc623f73.tar.gz CMake-6fda6005b306cc4a1e9e9e66d9cd4525fc623f73.tar.bz2 |
VS: renamed target property VS_USER_PROPS_CXX to VS_USER_PROPS
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 49274c0..dff6ad6 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -385,8 +385,7 @@ void cmVisualStudio10TargetGenerator::Generate() this->WriteString("<ImportGroup Label=\"PropertySheets\">\n", 1); { std::string props = VS10_CXX_USER_PROPS; - if (const char* p = - this->GeneratorTarget->GetProperty("VS_USER_PROPS_CXX")) { + if (const char* p = this->GeneratorTarget->GetProperty("VS_USER_PROPS")) { props = p; this->ConvertToWindowsSlash(props); } |